WebIDLpedia

FileSystemEntry interface

Definition

File and Directory Entries API defines FileSystemEntry



[Exposed=Window]
interface FileSystemEntry {
    readonly attribute boolean isFile;
    readonly attribute boolean isDirectory;
    readonly attribute USVString name;
    readonly attribute USVString fullPath;
    readonly attribute FileSystem filesystem;

    undefined getParent(optional FileSystemEntryCallback successCallback,
                   optional ErrorCallback errorCallback);
};

Methods and attributes that return objects implementing FileSystemEntry

Referring IDL interfaces/dictionaries