Finds the type of file system object that a path points to.
Returns a Future<FileSystemEntityType>
that completes with the result.
FileSystemEntityType has the constant instances file, directory, link, and notFound. type will return link only if the optional named argument followLinks
is false, and path
points to a link. If the path does not point to a file system object, or any other error occurs in looking up the path, notFound is returned. The only error or exception that may be put on the returned future is ArgumentError, caused by passing the wrong type of arguments to the function.
static Future<FileSystemEntityType> type(String path, {bool followLinks: true}) { return _getType(_toUtf8Array(path), followLinks); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-io/FileSystemEntity/type.html