Reads a symbolic link, returning the file that the link points to.
static Result<Path, IoError> readLinkSync(Path path) { return Fs.ioGuardSync(() => Path(Link(path.asString()).targetSync())); }