happy-opfs
    Preparing search index...

    Interface DirEntry

    An entry returned by readDir.

    interface DirEntry {
        handle: FileSystemHandle;
        path: string;
    }
    Index

    Properties

    Properties

    handle: FileSystemHandle

    The FileSystemHandle of the entry. Use isFileHandle() or isDirectoryHandle() to determine the type.

    path: string

    The relative path of the entry from the readDir path parameter. For non-recursive reads, this is just the entry name. For recursive reads, this includes the subdirectory path.