getDirectory method

void getDirectory([
  1. String? path,
  2. FileSystemFlags options,
  3. FileSystemEntryCallback successCallback,
  4. ErrorCallback errorCallback,
])

The FileSystemDirectoryEntry interface's method getDirectory() returns a FileSystemDirectoryEntry object corresponding to a directory contained somewhere within the directory subtree rooted at the directory on which it's called.

Implementation

external void getDirectory([
  String? path,
  FileSystemFlags options,
  FileSystemEntryCallback successCallback,
  ErrorCallback errorCallback,
]);