fseGetTypeSync 方法

FileSystemEntityType fseGetTypeSync(
  1. String path,
  2. bool followLinks
)

返回 pathFileSystemEntityType

当此覆盖安装时,此函数覆盖了 FileSystemEntity.typeSync 的行为。

实现

FileSystemEntityType fseGetTypeSync(String path, bool followLinks) {
  return FileSystemEntity._getTypeSyncHelper(utf8.encode(path), followLinks);
}