Class AlzEntry

AlzEntry class

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

public abstract class AlzEntry : IArchiveFileEntry

Properties

NameDescription
CompressedSize { get; }Compressed size of the file data in bytes.
IsDirectory { get; }Returns true if this entry represents a directory.
Length { get; }
Name { get; }File name (without path).
UncompressedSize { get; }Uncompressed size of the file data in bytes.

Methods

NameDescription
Extract(Stream, string)Extracts the entry to the stream provided.
Extract(string, string)Extracts the entry to the filesystem by the path provided.
Open(string)Opens the entry for extraction and provides a stream with decompressed entry content.

See Also