typeSync 静态方法

FileSystemEntityType typeSync(
  1. String path,
  2. {bool followLinks = true}
)

同步查找指向文件系统对象的类型。

如果 path 不指向文件系统对象或查找路径时发生任何其他错误,则返回 FileSystemEntityType.notFound

如果 path 指向链接且 followLinkstrue,则结果将为链接指向的文件系统对象。如果该对象不存在,则结果为 FileSystemEntityType.notFound。如果 path 指向链接且 followLinksfalse,则结果为 FileSystemEntityType.link

实现

static FileSystemEntityType typeSync(String path, {bool followLinks = true}) {
  return _getTypeSync(_toUtf8Array(path), followLinks);
}