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 (View Summary)
- FileSystemEntry
Index
Properties
Methods
Properties
Readonlyfilesystem
Readonlyfull Path
fullPath: string
Readonlyis Directory
isDirectory: boolean
Readonlyis File
isFile: boolean
Readonlyname
name: string
Methods
get Parent
getParent(
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): voidParameters
OptionalsuccessCallback: FileSystemEntryCallbackOptionalerrorCallback: ErrorCallback
MDN Reference