IronZIP 2024.1.1
See the version list below for details.
dotnet add package IronZIP --version 2024.1.1
NuGet\Install-Package IronZIP -Version 2024.1.1
<PackageReference Include="IronZIP" Version="2024.1.1" />
paket add IronZIP --version 2024.1.1
#r "nuget: IronZIP, 2024.1.1"
// Install IronZIP as a Cake Addin #addin nuget:?package=IronZIP&version=2024.1.1 // Install IronZIP as a Cake Tool #tool nuget:?package=IronZIP&version=2024.1.1
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.
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 7, .NET 6 and .NET 5, Core 2x & 3x, Standard 2, and Framework 4.6.2+
- Windows, macOS, Linux, Docker, Azure, and AWS
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.AddArchiveEntry("./assets/doc.pdf");
archive.AddArchiveEntry("./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
Documentation Links
- How-To Guides : https://ironsoftware.com/csharp/zip/how-to/
- Code Examples : https://ironsoftware.com/csharp/zip/examples/
- Tutorials : https://ironsoftware.com/csharp/zip/tutorials/
- Licensing : https://ironsoftware.com/csharp/zip/licensing/
- Live Chat Support : https://ironsoftware.com/csharp/zip/#helpscout-support
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 (>= 2024.1.1)
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 |
* Add encryption algorithms to protect archive (Supports - Traditional, AES128 and AES256)
* Adds IronZipArchiveOptions class
* Adds FromArchive() and FromDirectory() Constructors
* Adds Save method for each Archive type