IronZIP 2024.5.1

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

// Install IronZIP as a Cake Tool
#tool nuget:?package=IronZIP&version=2024.5.1

Nuget Installs Passed windows linux macOS microsoftazure docker aws livechat

IronZIP - The C# ZIP Archive Library

IronZIP NuGet Trial Banner Image

IronZIP is a library developed and maintained by Iron Software that helps C# Software Engineers to create, edit, and save Archives easily.

IronZIP excels at:

  • Archive various formats: Images (jpg, png, gif, tiff, svg, bmp), Text Files, Documents (PDFs, DOCX, XLSX), Audio (MP3, WAV), and even nested ZIP archives.
  • Safeguard your archive with passwords: Supports Traditional, AES128, and AES256 encryption.
  • Open password-protected ZIP archives.
  • Extract the contents of ZIP, TAR, GZIP, and BZIP2 archives.
  • Choose from 9 compression levels.
  • Add files to existing archives.

And many more! Visit our website to see all our code examples and a full list of our features

IronZIP has cross platform support compatibility with:

  • .NET 8, .NET 7, .NET 6 and .NET 5, Core 2x & 3x, Standard 2, and Framework 4.6.2+
  • Windows, macOS, Linux, Docker, Azure, and AWS

IronZIP Cross Platform Compatibility Support Image

Additionally, our full licensing information can easily be found on our website.

Using IronZIP

Installing the IronZIP NuGet package is quick and easy, please install the package like this:

PM> Install-Package IronZIP

Once installed, you can get started by adding using IronZip; to the top of your C# code. Here are examples to get started:

using IronZip;

string file_path = "./archive.zip";
IronZipArchive.ExtractArchiveToDirectory(file_path, "unarchived"); // Extracts files to folder 'unarchived'

// Create a new ZIP archive
using (var archive = new IronZipArchive())
{
    // Add entries
    archive.Add("./assets/doc.pdf");
    archive.Add("./assets/img.png");

    // Export ZIP file
    archive.SaveAs("./output/archive.zip");
}

Features

Building Archives from Files
  • Images (JPG, PNG, GIF, TIFF, SVG, BMP)
  • Text files
  • Documents (PDF, DOCX, XLSX)
  • Audio (MP3, WAV)
  • Other Archives
Opening Archives
  • ZIP
  • TAR
  • GZIP
  • BZIP2
Export Archives
  • ZIP
  • TAR
  • GZIP
  • BZIP2

Licensing & Support available

For code examples, tutorials and documentation visit https://ironsoftware.com/csharp/zip/

For support please email us at support@ironsoftware.com

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 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

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
2024.5.1 90 4/29/2024
2024.4.1 332 4/4/2024
2024.3.3 231 3/8/2024
2024.2.1 213 1/29/2024
2024.1.1 324 12/29/2023
2023.12.1 246 11/27/2023
2023.11.2 167 10/31/2023

* Minor Bug Fixes