identical静态方法
检查两个路径是否指向文件系统中相同对象。
返回一个完成后包含结果的 Future<bool>
。
比较链接与目标返回 false
,同样比较两个指向同一目标的链接也会返回 false
。为了检查链接的目标,请显式使用 Link.target 获取它。路径内部出现的目录链接将被跟随,以找到文件系统对象。
如果某个路径指向一个不存在的对象,将使用错误完成返回的 Future。
实现
static Future<bool> identical(String path1, String path2) {
IOOverrides? overrides = IOOverrides.current;
if (overrides == null) {
return _identical(path1, path2);
}
return overrides.fseIdentical(path1, path2);
}