bindings/fs library

File System Standard

https://fs.spec.whatwg.org/

Classes

FileSystemCreateWritableOptions
FileSystemDirectoryHandle
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers. The interface of the File System Access API provides a handle to a file system directory. The interface is accessed via the window.showDirectoryPicker() method.
FileSystemFileHandle
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers. The interface of the File System Access API represents a handle to a file system entry. The interface is accessed through the window.showOpenFilePicker() method. Note that read and write operations depend on file-access permissions that do not persist after a page refresh if no other tabs for that origin remain open. The queryPermission method of the FileSystemHandle interface can be used to verify permission state before accessing a file.
FileSystemGetDirectoryOptions
FileSystemGetFileOptions
FileSystemHandle
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers. The interface of the File System Access API is an object which represents a file or directory entry. Multiple handles can represent the same entry. For the most part you do not work with directly but rather its child interfaces FileSystemFileHandle and FileSystemDirectoryHandle.
FileSystemRemoveOptions
FileSystemWritableFileStream
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers. The interface of the File System Access API is a WritableStream object with additional convenience methods, which operates on a single file on disk. The interface is accessed through the FileSystemFileHandle.createWritable() method.
WriteParams