interface FileSystemEntry {
    filesystem: FileSystem;
    fullPath: string;
    isDirectory: boolean;
    isFile: boolean;
    name: string;
    getParent(
        successCallback?: FileSystemEntryCallback,
        errorCallback?: ErrorCallback,
    ): void;
}

Hierarchy (View Summary)

Properties

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

Methods