类型 静态方法

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