isDirectory method

Future<bool> isDirectory(
  1. String path, {
  2. bool debug = false,
})

Implementation

Future<bool> isDirectory(String path, {bool debug = false}) async {
  return testFile(path, 'd', debug: debug);
}