FileSystemDirectoryHandle
The FileSystemDirectoryHandle
interface of the File System API provides a handle to a file system directory. Available only in secure contexts.
Properties
Functions
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.
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.
The getFileHandle()
method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
The getFileHandle()
method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
The isSameEntry()
method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
The isSameEntry()
method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
The removeEntry()
method of the FileSystemDirectoryHandle interface attempts to remove an entry if the directory handle contains a file or directory called the name specified.
The removeEntry()
method of the FileSystemDirectoryHandle interface attempts to remove an entry if the directory handle contains a file or directory called the name specified.
The resolve()
method of the FileSystemDirectoryHandle interface returns an Array of directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
The resolve()
method of the FileSystemDirectoryHandle interface returns an Array of directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.