getDirectoryHandle method

JSPromise<FileSystemDirectoryHandle> getDirectoryHandle(
  1. String name, [
  2. FileSystemGetDirectoryOptions options
])

The getDirectoryHandle() method of the FileSystemDirectoryHandle interface returns a FileSystemDirectoryHandle for a subdirectory with the specified name within the directory handle on which the method is called.

Implementation

external JSPromise<FileSystemDirectoryHandle> getDirectoryHandle(
  String name, [
  FileSystemGetDirectoryOptions options,
]);