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);
}