typeSync 静态方法
同步查找指向文件系统对象的类型。
如果 path
不指向文件系统对象或查找路径时发生任何其他错误,则返回 FileSystemEntityType.notFound。
如果 path
指向链接且 followLinks
为 true
,则结果将为链接指向的文件系统对象。如果该对象不存在,则结果为 FileSystemEntityType.notFound。如果 path
指向链接且 followLinks
为 false
,则结果为 FileSystemEntityType.link。
实现
static FileSystemEntityType typeSync(String path, {bool followLinks = true}) {
return _getTypeSync(_toUtf8Array(path), followLinks);
}