AlzEntry

AlzEntry class

Represents a file entry in an ALZ archive with all its metadata.

The AlzEntry type exposes the following members:

Properties

NameDescription
compressed_sizeCompressed size of the file data in bytes.
uncompressed_sizeUncompressed size of the file data in bytes.
lengthGets the length of the entry in bytes.
is_directoryReturns true if this entry represents a directory.
nameFile name (without path).

Methods

NameDescription
extract(path, password)Extracts the entry to the filesystem by the path provided.
extract(destination, password)Extracts the entry to the stream provided.
extract(path)Extracts the entry to the filesystem by the path provided.
extract(destination)Extracts the entry to the stream provided.
open(password)Opens the entry for extraction and provides a stream with decompressed entry content.

See Also