UueArchive

UueArchive class

This class represents uuencoded file.

The UueArchive type exposes the following members:

Constructors

NameDescription
UueArchive()Initializes a new instance of the UueArchive class prepared for encoding.
UueArchive(source_stream)Initializes a new instance of the UueArchive class prepared for decoding.
UueArchive(path)Initializes a new instance of the UueArchive class.

Properties

NameDescription
nameName of original file.
file_entriesGets entries of IArchiveFileEntry type constituting the archive.
lengthGets the length of the entry in bytes.

Methods

NameDescription
save(output_stream, save_options)Saves archive to the stream provided.
save(destination_file_name, save_options)Saves archive to destination file provided.
extract(destination)Extracts the archive to the stream provided.
extract(path)Extracts the archive to the file by path.
set_source(source)Sets the content to be encoded within the archive.
set_source(path)Sets the content to be encoded within the archive.
extract_to_directory(destination_directory)Extracts content of the archive to the directory provided.
open()Opens the archive for decoding and provides a stream with archive content.

See Also