SevenZipArchive

SevenZipArchive class

This class represents 7z archive file. Use it to compose and extract 7z archives.

public class SevenZipArchive : IArchive

Constructors

NameDescription
SevenZipArchive(SevenZipEntrySettings)Initializes a new instance of the SevenZipArchive class with optional settings for its entries.
SevenZipArchive(Stream, string)Initializes a new instance of the SevenZipArchive class and composes entries list can be extracted from the archive.
SevenZipArchive(string, string)Initializes a new instance of the SevenZipArchive class and composes entries list can be extracted from the archive.
SevenZipArchive(string[], string)Initializes a new instance of the SevenZipArchive class from multi-volume 7z archive and composes entries list can be extracted from the archive.

Properties

NameDescription
Entries { get; }Gets entries of SevenZipArchiveEntry type constituting the archive.
NewEntrySettings { get; }Compression and encryption settings used for newly added SevenZipArchiveEntry items.

Methods

NameDescription
CreateEntries(DirectoryInfo, bool)Adds to the archive all files and directories recursively in the directory given.
CreateEntries(string, bool)Adds to the archive all files and directories recursively in the directory given.
CreateEntry(string, Stream, SevenZipEntrySettings)Create single entry within the archive.
CreateEntry(string, FileInfo, bool, SevenZipEntrySettings)Create single entry within the archive.
CreateEntry(string, Stream, SevenZipEntrySettings, FileSystemInfo)Create single entry within the archive.
CreateEntry(string, string, bool, SevenZipEntrySettings)Create single entry within the archive.
Dispose()Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
ExtractToDirectory(string, string)Extracts all the files in the archive to the directory provided.
Save(Stream)Saves 7z archive to the stream provided.
Save(string)Saves archive to destination file provided.
SaveSplit(string, SplitSevenZipArchiveSaveOptions)Saves multi-volume archive to destination directory provided.

See Also