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
Readonly
filesystem
Readonly
full Path
fullPath: string
Readonly
is Directory
isDirectory: boolean
Readonly
is File
isFile: boolean
Readonly
name
name: string
Methods
get Parent
getParent(
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): void
Parameters
Optional
successCallback: FileSystemEntryCallbackOptional
errorCallback: ErrorCallback
MDN Reference