IronZIP 2023.11.2
See the version list below for details.
dotnet add package IronZIP --version 2023.11.2
NuGet\Install-Package IronZIP -Version 2023.11.2
<PackageReference Include="IronZIP" Version="2023.11.2" />
paket add IronZIP --version 2023.11.2
#r "nuget: IronZIP, 2023.11.2"
// 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
IronZIP - The C# ZIP Archive Library
IronZIP is a library developed and maintained by Iron Software that helps C# Software Engineers to create, edit, and save Archives easily.
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
Documentation Links
- API Reference : https://ironsoftware.com/csharp/zip/object-reference/api/
- Licensing : https://ironsoftware.com/csharp/zip/licensing/
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 | Versions 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. |
-
.NETStandard 2.0
- IronSoftware.Common (>= 2023.11.12)
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.11.3 | 158 | 11/6/2024 |
2024.10.2 | 335 | 10/1/2024 |
2024.9.3 | 339 | 9/9/2024 |
2024.8.2 | 546 | 7/30/2024 |
2024.7.1 | 306 | 7/2/2024 |
2024.6.1 | 351 | 6/4/2024 |
2024.5.1 | 266 | 4/29/2024 |
2024.4.1 | 436 | 4/4/2024 |
2024.3.3 | 968 | 3/8/2024 |
2024.2.1 | 255 | 1/29/2024 |
2024.1.1 | 357 | 12/29/2023 |
2023.12.1 | 280 | 11/27/2023 |
2023.11.2 | 212 | 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