Class AppleArchiveEntry

AppleArchiveEntry class

Represents a file or directory entry within an AppleArchive.

public sealed class AppleArchiveEntry : IArchiveFileEntry

Properties

NameDescription
IsDirectory { get; }Gets a value indicating whether the entry represents a directory.
Length { get; }Gets the uncompressed length of the entry in bytes.
Name { get; }Gets the path of the entry inside the archive.

Methods

NameDescription
Open()Opens the entry for extraction and provides a stream with the entry content.

Remarks

An instance of this class can represent either an entry parsed from an existing Apple Archive or an entry added to an archive being composed.

See Also