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

Hierarchy (View Summary)

Properties

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

Methods