SevenZipArchive
SevenZipArchive class
This class represents 7z archive file. Use it to compose and extract 7z archives.
public class SevenZipArchive : IDisposable
Constructors
Properties
Methods
Name |
Description |
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. |
See Also