@zip.js/zip.js
    Preparing search index...

    Class ZipEntry

    Represents an entry in a zip file (Filesystem API).

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    children: ZipEntry[]

    The children of the entry.

    The underlying EntryMetaData instance.

    id: number

    The ID of the instance.

    name: string

    The relative filename of the entry.

    parent?: ZipEntry

    The parent directory of the entry.

    uncompressedSize: number

    The uncompressed size of the content.

    Methods

    • Tests the password on the entry and all children if any, returns true if the entry is not password protected

      Parameters

      Returns Promise<boolean>

    • Clones the entry

      Parameters

      • OptionaldeepClone: boolean

        true to clone all the descendants.

      Returns ZipEntry

    • Returns the full filename of the entry

      Returns string

    • Tests if the entry or any of its children is password protected

      Returns boolean

    • Set the name of the entry

      Parameters

      • name: string

        The new name of the entry.

      Returns void