Interface FileSystemEntry
interface FileSystemEntry {
filesystem: FileSystem;
fullPath: string;
isDirectory: boolean;
isFile: boolean;
name: string;
getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
}
filesystem: FileSystem;
fullPath: string;
isDirectory: boolean;
isFile: boolean;
name: string;
getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
}
Hierarchy
- FileSystemEntry (view full)
Index
Properties
Methods
Properties
Readonly
filesystem
Readonly
fullPath
fullPath : string
Readonly
isDirectory
isDirectory : boolean
Readonly
isFile
isFile : boolean
Readonly
name
name: string
Methods
getParent
- get
Parent (successCallback?, errorCallback?): void Parameters
Optional
successCallback: FileSystemEntryCallbackOptional
errorCallback: ErrorCallback
Returns void
MDN Reference