mountDirectory abstract method

Future<MountRecord> mountDirectory({
  1. required String localDir,
  2. required String target,
  3. String? name,
  4. bool rw = false,
  5. bool initialSync = true,
  6. List<String> include = const [],
  7. List<String> exclude = const [],
})

Mounts local directory localDir onto target (<node>:<remote-path>).

Implementation

Future<MountRecord> mountDirectory({
  required String localDir,
  required String target,
  String? name,
  bool rw = false,
  bool initialSync = true,
  List<String> include = const [],
  List<String> exclude = const [],
});