symlinkMetadataSync method

Result<Metadata, PathIoError> symlinkMetadataSync()

Returns the metadata for the symlink. Note: using this method means that the program can no longer compile for the web.

Implementation

Result<io.Metadata, PathIoError> symlinkMetadataSync() => isWindows
    ? WindowsPath(_string).symlinkMetadataSync()
    : UnixPath(_string).symlinkMetadataSync();