fileInfo method

  1. @override
Future<Result<FileInfo, FileError>> fileInfo(
  1. String path
)
override

Returns metadata for the addressed path without following symlinks.

Implementation

@override
Future<Result<FileInfo, FileError>> fileInfo(String path) =>
    _fs.fileInfo(path);