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 full)

Properties

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

Methods

  • Parameters

    Returns void

  • Parameters

    Returns void