exist method

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

Exist Check file path exist in system

Implementation

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