Trilium Frontend API
    Preparing search index...

    Interface FileSystem

    The File and Directory Entries API interface FileSystem is used to represent a file system. These objects can be obtained from the filesystem property on any file system entry. Some browsers offer additional APIs to create and manage file systems, such as Chrome's requestFileSystem() method.

    MDN Reference

    interface FileSystem {
        name: string;
        root: FileSystemDirectoryEntry;
    }
    Index

    Properties

    Properties

    name: string

    The read-only name property of the FileSystem interface indicates the file system's name. This string is unique among all file systems currently exposed by the File and Directory Entries API.

    MDN Reference

    The read-only root property of the FileSystem interface specifies a FileSystemDirectoryEntry object representing the root directory of the file system, for use with the File and Directory Entries API.

    MDN Reference