FromLZMA

TarArchive.FromLZMA method (1 of 2)

Extracts supplied LZMA archive and composes TarArchive from extracted data.

Important: LZMA archive is fully extracted within this method, its content is kept internally. Beware of memory consumption.

public static TarArchive FromLZMA(Stream source)
ParameterTypeDescription
pathStreamThe path to the archive file.

Return Value

An instance of TarArchive

Remarks

LZMA extraction stream is not seekable by the nature of compression algorithm. Tar archive provides facility to extract arbitrary record, so it has to operate seekable stream under the hood.

See Also


TarArchive.FromLZMA method (2 of 2)

Extracts supplied LZMA archive and composes TarArchive from extracted data.

Important: LZMA archive is fully extracted within this method, its content is kept internally. Beware of memory consumption.

public static TarArchive FromLZMA(string path)
ParameterTypeDescription
pathStringThe path to the archive file.

Return Value

An instance of TarArchive

Remarks

LZMA extraction stream is not seekable by the nature of compression algorithm. Tar archive provides facility to extract arbitrary record, so it has to operate seekable stream under the hood.

See Also