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 Summary)
 Index
Properties
Methods
 Properties
Readonlyfilesystem
ReadonlyfullPath 
fullPath: string
ReadonlyisDirectory 
isDirectory: boolean
ReadonlyisFile 
isFile: boolean
Readonlyname
name: string
 Methods
getParent 
- getParent(
 successCallback?: FileSystemEntryCallback,
 errorCallback?: ErrorCallback,
 ): void
- Parameters- OptionalsuccessCallback: FileSystemEntryCallback
- OptionalerrorCallback: ErrorCallback
 - Returns void
MDN Reference