IronZIP 2023.11.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package IronZIP --version 2023.11.2
NuGet\Install-Package IronZIP -Version 2023.11.2
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="2023.11.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IronZIP --version 2023.11.2
#r "nuget: IronZIP, 2023.11.2"
#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=2023.11.2

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

Nuget Installs Passed 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 Cross Platform Compatibility Support Image

Additionally, our API reference and 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";
IronArchive.ExtractArchiveToDirectory(file_path, "output"); // Extracts files to folder 'unarchived'


// Create a new Archive this auto-saves
using (var archive = new IronArchive("../output/archive.zip"))
{
    archive.AddArchiveEntry("/assets/doc.pdf"); // Adds and auto-saves
    archive.AddArchiveEntry("/assets/img.png"); // Adds and auto-saves
}

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

You can email us at support@ironsoftware.com for support directly from our code team. We offer licensing and extensive support for commercial deployment projects.

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 143 4/29/2024
2024.4.1 363 4/4/2024
2024.3.3 262 3/8/2024
2024.2.1 216 1/29/2024
2024.1.1 327 12/29/2023
2023.12.1 249 11/27/2023
2023.11.2 171 10/31/2023

- First Release!
- Compress files into zip, tar, gzip (gz), bzip2 (bz2)
- Decompress archive into files from zip, tar, gzip (gz), bzip2 (bz2)
- Additionally supports tgz and tar.gz and tar.bz2