fseGetType 方法

Future<FileSystemEntityType> fseGetType(
  1. String path,
  2. bool followLinks
)

异步返回 FileSystemEntityType 对应于 path

安装此重载时,此函数覆盖了 FileSystemEntity.type 行为的处理。

实现

Future<FileSystemEntityType> fseGetType(String path, bool followLinks) {
  return FileSystemEntity._getTypeRequest(utf8.encode(path), followLinks);
}