类型静态方法

Future<FileSystemEntityType> type(
  1. String path, {
  2. bool followLinks = true,
})

查找路径指向的文件系统对象的类型。

返回一个 Future<FileSystemEntityType>,其结果与 typeSync 相同。

实现

static Future<FileSystemEntityType> type(String path,
    {bool followLinks = true}) {
  return _getType(_toUtf8Array(path), followLinks);
}