Interface FileSystemEntry

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

    Properties

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

    Methods