Interface FileSystemDirectoryEntry

    interface FileSystemDirectoryEntry {
        filesystem: FileSystem;
        fullPath: string;
        isDirectory: boolean;
        isFile: boolean;
        name: string;
        createReader(): FileSystemDirectoryReader;
        getDirectory(
            path?: string,
            options?: FileSystemFlags,
            successCallback?: FileSystemEntryCallback,
            errorCallback?: ErrorCallback,
        ): void;
        getFile(
            path?: string,
            options?: FileSystemFlags,
            successCallback?: FileSystemEntryCallback,
            errorCallback?: ErrorCallback,
        ): void;
        getParent(
            successCallback?: FileSystemEntryCallback,
            errorCallback?: ErrorCallback,
        ): void;
    }
    Hierarchy

    Properties

    filesystem: FileSystem
    fullPath: string
    isDirectory: boolean
    isFile: boolean
    name: string

    Methods