fseGetType 方法

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

异步返回 pathFileSystemEntityType

当此覆盖安装后,此函数将覆盖 FileSystemEntity.type 的行为。

实现

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