Interface FileSystemFileEntry

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

    Properties

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

    Methods