W3cubDocs

/Dart 2

type method

Future<FileSystemEntityType> type (String path, { bool followLinks: true })

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);
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-io/FileSystemEntity/type.html