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

Hierarchy (view full)

Properties

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

Methods

  • Parameters

    Returns void

  • Parameters

    Returns void

Generated using TypeDoc