getFileHandle method

JSPromise<FileSystemFileHandle> getFileHandle(
  1. String name, [
  2. FileSystemGetFileOptions options
])

The getFileHandle() method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.

Implementation

external JSPromise<FileSystemFileHandle> getFileHandle(
  String name, [
  FileSystemGetFileOptions options,
]);