type method - FileSystemEntity class - dart:io library (original) (raw)
type static method
Future<FileSystemEntityType> type(
Finds the type of file system object that a path points to.
Returns a Future<FileSystemEntityType> that completes with the same results as typeSync.
Implementation
static Future<FileSystemEntityType> type(
String path, {
bool followLinks = true,
}) {
return _getType(_toUtf8Array(path), followLinks);
}