interface WebKitFileEntry {
    filesystem: WebKitFileSystem;
    fullPath: string;
    isDirectory: boolean;
    isFile: boolean;
    name: string;
    file(successCallback, errorCallback?): void;
}

Hierarchy (view full)

Properties

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

Methods