Search


Search something to see results

FileSystemDirectoryEntry

interface FileSystemDirectoryEntry {
    createReader(): FileSystemDirectoryReader;
    getDirectory(
        path?: null | string,
        options?: FileSystemFlags,
        successCallback?: FileSystemEntryCallback,
        errorCallback?: ErrorCallback,
    ): void;
    getFile(
        path?: null | string,
        options?: FileSystemFlags,
        successCallback?: FileSystemEntryCallback,
        errorCallback?: ErrorCallback,
    ): void;
    filesystem: FileSystem;
    fullPath: string;
    isDirectory: boolean;
    isFile: boolean;
    name: string;
    getParent(
        successCallback?: FileSystemEntryCallback,
        errorCallback?: ErrorCallback,
    ): void;
}

Hierarchy (View Summary)

Index

Properties

Methods

Properties

filesystem: FileSystem
fullPath: string
isDirectory: boolean
isFile: boolean
name: string

Methods

Returns FileSystemDirectoryReader

Parameters

Returns void

Parameters

Returns void

Parameters

Returns void