The children of the entry.
OptionaldataThe underlying EntryMetaData instance.
The ID of the instance.
The relative filename of the entry.
Optional ReadonlyoptionsThe options applied to the entry when the zip file is exported.
These are the options passed when the entry was added to the filesystem, updated by ZipEntry#setOptions. An entry imported from a zip file has none until ZipEntry#setOptions is called.
OptionalparentThe parent directory of the entry.
The uncompressed size of the content.
It is the size of the raw compressed content when the entry has been imported with the
passThrough option set to true, since the entry holds the compressed data in that case. The
uncompressed size of the original entry remains available in ZipEntry#data.
Tests the password on the entry and all children if any, returns true if the entry is not password protected
Optionaloptions: EntryGetDataOptionsClones the entry
OptionaldeepClone: boolean
true to clone all the descendants.
Returns the full filename of the entry
Returns the filename of the entry relative to a parent directory
Tests if a ZipDirectoryEntry instance is an ancestor of the entry
The ZipDirectoryEntry instance.
Tests if the entry or any of its children is password protected
Set the name of the entry
The new name of the entry.
Sets the options applied to the entry when the zip file is exported
The options.
The options are merged into ZipEntry#options, and an option set to undefined is removed
from it instead of being stored. They take precedence over the options passed to
{@link ZipDirectoryEntry}#export*() and over the metadata of the entry they were imported from,
exactly like the options passed when adding an entry to the filesystem.
The options describing the data of an entry exported as-is, e.g. ZipWriterConstructorOptions#compressionMethod and ZipWriterAddDataOptions#uncompressedSize, are ignored: they are always the ones of the original entry. The ZipWriterAddDataOptions#directory option and the progress callbacks are ignored as well. Invalid option values are reported when the zip file is exported.
Represents an entry in a zip file (Filesystem API).