Aspose.Zip 24.3.0

dotnet add package Aspose.Zip --version 24.3.0
NuGet\Install-Package Aspose.Zip -Version 24.3.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="Aspose.Zip" Version="24.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Zip --version 24.3.0
#r "nuget: Aspose.Zip, 24.3.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 Aspose.Zip as a Cake Addin
#addin nuget:?package=Aspose.Zip&version=24.3.0

// Install Aspose.Zip as a Cake Tool
#tool nuget:?package=Aspose.Zip&version=24.3.0

Archive Processing .NET API

banner

Product Page | Docs | API Reference | Examples | Blog | Search | Free Support | Temporary License

Aspose.ZIP for .NET is a class library that can be used by .NET developers for a variety of archive-processing tasks. It supports ZIP, GZIP, BZIP2, TAR, CPIO, LZIP, 7Z, LZMA, XZ and Z formats. It allows you to encrypt and decrypt files, create self-extracting archives and extract RAR, CAB, WIM formats as well. The API is easy to use, robust and written in managed code entirely to be used in .NET applications.

Aspose.ZIP for .NET is implemented using managed C# and can be used with any .NET language: C#, VB.NET, F#. It can be integrated with any kind of application, from ASP.NET web applications to forms applications within any OS: Windows/Linux/MacOS.

Functionality

  • Compress files and folders to standard ZIP format using standard or enhanced Deflate, Bzip2, LZMA, XZ or PPMd compression algorithm.
  • Decompress files and folders
  • Detect archive format basing on its content
  • Password protect ZIP archives with AES or ZipCrypto
  • Apply different protection scheme to each file in an archive
  • Append files to zipped archive
  • Use parallelism to achieve efficient ZIP, Lzip, Xz and Bzip2 compression
  • Pack files and folders to tar or cpio archive and compress it with gzip or bzip2
  • Compose self-extracted and multi-volume archives
  • Compose and extract lzip, z and xz archives
  • Compose 7z archives with LZMA, LZMA2, PPMd or Bzip2 compression and optional encryption
  • Extract simple 7z archives with LZMA, LZMA2, PPMd, BZip2 and Store compression and without encryption
  • Extract RAR4 and RAR5 archives, with and without encryption.

To become familiar with the most popular Aspose.ZIP functionality, please have a look at our free online applications.

Supported Formats

Typical for Windows: ZIP, RAR, 7Z, CAB, WIM

Typical for Unix/Linux: TAR, CPIO, SHAR; GZ, BZ2, LZ, XZ, LZMA, XAR, Z

Full list

Getting Started

So, you probably want to jump up and start coding your archive manipulatio on C#, F# or Visual Basic right away? Let us show you how to do it in a few easy steps.

Run Install-Package Aspose.Zip from the Package Manager Console in Visual Studio to fetch the NuGet package. If you want to upgrade to the latest package version, please run Update-Package Aspose.Zip.

You can run the following code snippets in C# to see how our library works. Also feel free to check out the GitHub Repository for other common use cases.

Create ZIP archive from a file

The usage of Aspose.ZIP is simple for common scenarios.

using (var archive = new Archive()) // Instantiate an archive
{
   archive.CreateEntry("first_entry.dat", "data.bin"); // Add an entry from file
   archive.Save("archive.zip"); // Save composed archive to file
}

Extract RAR to a folder

using (var archive = new RarArchive("archive.rar")))
{
    archive.ExtractToDirectory("extracted");
}

Create 7z archive with LZMA compression and AES Encryption

// Instantiate an archive, providing compression and encryption settings
using (var archive = new SevenZipArchive(new SevenZipEntrySettings(new SevenZipLZMACompressionSettings(), new SevenZipAESEncryptionSettings("p@s$"))))
{
   archive.CreateEntry("first_entry.dat", "data.bin");
   archive.Save("archive.7z");
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 was computed.  net40 is compatible.  net403 was computed.  net45 was computed.  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. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Aspose.Zip:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

Backups

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aspose.Zip:

Repository Stars
R2NorthstarTools/VTOL
A Manager and Installer For the Titanfall 2 +Northstar launcher.
Version Downloads Last updated
24.3.0 2,322 3/28/2024
24.2.0 4,088 2/25/2024
24.1.0 6,139 1/31/2024
23.12.0 4,818 12/28/2023
23.11.0 12,628 11/28/2023
23.10.0 10,303 10/24/2023
23.9.0 8,733 9/29/2023
23.8.1 4,527 9/7/2023
23.8.0 5,232 8/30/2023
23.7.0 18,753 7/26/2023
23.6.0 9,526 6/30/2023
23.5.0 14,805 5/31/2023
23.4.0 16,709 4/30/2023
23.3.0 19,905 3/26/2023
23.2.0 19,065 3/1/2023
23.1.0 20,987 1/27/2023
22.12.0 14,557 12/22/2022
22.11.0 12,654 11/26/2022
22.10.0 16,750 10/28/2022
22.9.0 34,391 9/24/2022
22.8.0 11,956 8/31/2022
22.7.0 35,372 7/31/2022
22.6.0 6,384 7/1/2022
22.5.0 20,096 5/28/2022
22.3.0 29,568 3/19/2022
22.1.0 40,174 1/14/2022
21.11.0 22,387 11/30/2021
21.10.0 31,302 10/14/2021
21.8.0 29,220 9/1/2021
21.7.0 10,940 8/3/2021
21.6.0 23,839 6/21/2021
21.4.0 90,733 4/8/2021
21.2.0 20,803 3/3/2021
21.1.0 9,340 1/31/2021
20.12.0 10,492 12/14/2020
20.11.0 4,423 11/24/2020
20.9.1 11,162 10/1/2020
20.9.0 629 9/30/2020
20.8.0 10,992 9/2/2020
20.6.0 93,496 6/16/2020
20.5.0 7,290 5/29/2020
20.3.0 12,030 3/10/2020
19.12.0 8,794 12/23/2019
19.10.0 11,700 10/30/2019
19.8.0 14,690 8/26/2019
19.6.1 1,601 7/18/2019
19.6.0 1,065 6/26/2019
19.3.0 1,328 4/2/2019
19.1.0 8,434 1/3/2019
18.11.1 3,307 11/29/2018
18.11.0 1,047 11/21/2018