directory method

  1. @override
Directory directory(
  1. dynamic path
)

Returns a reference to a Directory at path.

path can be either a `String`, a `Uri`, or a `FileSystemEntity`.

Implementation

@override
Directory directory(dynamic path) {
  return FilenDirectory(
    client: client,
    path: getPath(path),
    fs: this,
  );
}