identical method Null safety

Future<bool> identical(
  1. String path1,
  2. String path2
)

Checks whether two paths refer to the same object in the file system.

Returns a Future<bool> that completes with the result.

Comparing a link to its target returns false, as does comparing two links that point to the same target. To check the target of a link, use Link.target explicitly to fetch it. Directory links appearing inside a path are followed, though, to find the file system object.

Completes the returned Future with an error if one of the paths points to an object that does not exist.

Implementation

static Future<bool> identical(String path1, String path2) {
  IOOverrides? overrides = IOOverrides.current;
  if (overrides == null) {
    return _identical(path1, path2);
  }
  return overrides.fseIdentical(path1, path2);
}