file method
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);
}
Returns a new RemoteFile within this directory.
RemoteFile file(String path) {
final newPath = _fileSystem.pathContext.join(this.path, path);
return RemoteFile(fileSystem: _fileSystem, path: newPath);
}