list method

  1. @MPI(name: "mesh.fs.ls")
Future<FileEntry?> list(
  1. String path, {
  2. Context? ctx,
})

List all file trees.

Implementation

@MPI(name: "mesh.fs.ls")
Future<FileEntry?> list(String path, {Context? ctx}) {
  throw UnimplementedError('list() has not been implemented.');
}