readLink method

Future<Result<UnixPath, PathIoError>> readLink()

Reads a symbolic link, returning the file that the link points to.

Implementation

Future<Result<UnixPath, PathIoError>> readLink() =>
    io.readLink(_string) as Future<Result<UnixPath, PathIoError>>;