FileSystemDirectoryEntry
interface FileSystemDirectoryEntry extends FileSystemEntry {
createReader(): FileSystemDirectoryReader;
getDirectory(
path?: string | null,
options?: FileSystemFlags,
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): void;getFile(
}path?: string | null,
options?: FileSystemFlags,
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): void;var FileSystemDirectoryEntry: {
prototype: FileSystemDirectoryEntry;
new (): FileSystemDirectoryEntry;
};§Extends
§Methods
§
createReader(): FileSystemDirectoryReader
[src]§
getDirectory(
[src]path?: string | null,
options?: FileSystemFlags,
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): void§
getFile(
[src]path?: string | null,
options?: FileSystemFlags,
successCallback?: FileSystemEntryCallback,
errorCallback?: ErrorCallback,
): void