file method

RemoteFile file(
  1. String path
)

Returns a new RemoteFile within this directory.

Implementation

RemoteFile file(String path) {
  final newPath = _fileSystem.pathContext.join(this.path, path);
  return RemoteFile(fileSystem: _fileSystem, path: newPath);
}