link method

RemoteLink link(
  1. String path
)

Returns a new RemoteLink within this directory.

Implementation

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