Cube.FileSystem.SevenZip 1.12.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Cube.FileSystem.SevenZip --version 1.12.0
NuGet\Install-Package Cube.FileSystem.SevenZip -Version 1.12.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cube.FileSystem.SevenZip" Version="1.12.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cube.FileSystem.SevenZip --version 1.12.0
#r "nuget: Cube.FileSystem.SevenZip, 1.12.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cube.FileSystem.SevenZip as a Cake Addin
#addin nuget:?package=Cube.FileSystem.SevenZip&version=1.12.0

// Install Cube.FileSystem.SevenZip as a Cake Tool
#tool nuget:?package=Cube.FileSystem.SevenZip&version=1.12.0

AppVeyor Codecov

Cube.FileSystem.SevenZip projects wrap the 7-Zip library through the COM interface. The repository also has an archiving or extracting application, which name is CubeICE. These libraries and applications are available for .NET Framework 3.5, 4.5 or more.

Usage

The Cube.FileSystem.SevenZip library is available for NuGet, but you need to copy the 7z.dll to the executing directory manually. You can download the library from www.7-zip.org or our GitHub releases.

Examples for archiving files

A simple example for archiving files is as follows. The statement "using Cube.FileSystem.SevenZip;" has been omitted in all samples.

using (var writer = new ArchiveWriter(Format.Zip))
{
    writer.Add(@"path\to\file");
    writer.Add(@"path\to\directory_including_files");
    writer.Option  = new ZipOption { CompressionLevel = CompressionLevel.Ultra };
    writer.Filters = new[] { ".DS_Store", "Thumbs.db", "__MACOSX", "desktop.ini" };
    
    var progress = new Progress<Report>(e => DoSomething(e));
    writer.Save(@"path\to\save.zip", "password", progress);
}

You create an ArchiveWriter object with an archiving format (e.g. Zip, SevenZip, ...), add files and/or directories you want to archive, set some additional options, and finally call the Save method. When you create Tar based archives, you can use a TarOption object for selecting a compression method.

using (var writer = new ArchiveWriter(Format.Tar))
{
    writer.Option = new TarOption
    {
        CompressionMethod = CompressionMethod.BZip2, // GZip, BZip2, XZ or Copy
        CompressionLevel  = CompressionLevel.Ultra,
    };

    writer.Add(@"path\to\file");
    writer.Add(@"path\to\directory_including_files");
    writer.Save(@"path\to\save.tar.gz");
}

Examples for extracting archives

If you want to extract all files from the archive, you create an ArchiveReader object and call the Extract method. The 2nd argument of the constructor, that means the password of the archive, can be set string or Cube.Query<string> object. The latter is mainly used for implementing the interactive mode.

// Set password directly or using Query<string>
var password = new Cube.Query<string>(e =>
{
    e.Result = "password";
    e.Cancel = false;
});

using (var reader = new ArchiveReader(@"path\to\archive", password))
{
    var progress = new Progress<Report>(e => DoSomething(e));
    reader.Filters = new[] { ".DS_Store", "Thumbs.db", "__MACOSX", "desktop.ini" };    
    reader.Extract(@"path\to\directory", progress);
}

ArchvieReader.Items property can access each item of the archive. If you want to extract only the specific files, write as follows.

using (var reader = new ArchiveReader(@"path\to\archive", "password"))
{
    // Save as "path\to\directory\{item.FullName}"
    var directory = @"path\to\directory";
    reader.Items[0].Extract(directory);
    reader.Items[3].Extract(directory);
}

Note that ArchiveWriter and ArchiveReader classes need to execute in the same thread from constructing to destroying. Use Task.Run() in the whole transaction if you need to archive or extract files asynchronously.

Dependencies

Thanks

Contributing

  1. Fork Cube.FileSystem.SevenZip repository.
  2. Create a feature branch from the stable branch (git checkout -b my-new-feature origin/stable). The master branch may refer some pre-released NuGet packages. See AppVeyor.yml if you want to build and commit in the master branch.
  3. Commit your changes.
  4. Rebase your local changes against the stable (or master) branch.
  5. Run test suite with the NUnit console or the Visual Studio (NUnit 3 test adapter) and confirm that it passes.
  6. Create new Pull Request.

License

Copyright (c) 2010 CubeSoft, Inc. The Cube.FileSystem.SevenZip project is licensed under the GNU LGPLv3.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.0.0 949 7/21/2022
6.0.1 890 3/1/2022
6.0.0 884 1/24/2022
5.0.0 791 10/26/2021
1.15.10 995 6/15/2020
1.15.0 1,186 4/22/2019
1.14.0 1,139 2/17/2019
1.13.0 1,178 11/22/2018
1.12.0 1,184 10/23/2018
1.11.1 1,208 10/17/2018
1.11.0 1,210 10/17/2018