IronZIP simplifies the creation, modification, and saving of archive files in C# applications, thanks to the robust APIs provided by Iron Software.
- Handles numerous archive formats: Images (jpg, png, gif, tiff, svg, bmp), Text, Documents (PDFs, DOCX, XLSX), Audio (MP3, WAV), and deeper ZIP archives.
- Provides password protection options: Supports Traditional, AES128, and AES256 encryption.
- Opens password-secured ZIP archives.
- Unpacks ZIP, TAR, GZIP, and BZIP2 archive contents.
- Offers 9 distinct compression levels.
- Permits file additions to pre-existing archives.
Explore more on our homepage including rich code examples and a comprehensive feature list.
- Versions: .NET 8, .NET 7, .NET 6, .NET 5, Core 2x & 3x, Standard 2, and Framework 4.6.2+
- Operating Systems: Windows, macOS, Linux, as well as Docker, Azure, and AWS platforms
Discover our comprehensive licensing details on our website.
Installing the IronZIP NuGet package is streamlined:
PM> Install-Package IronZIP
After installation, introduce IronZip;
at the beginning of your C# scripts. Below are some practical examples:
using IronZip;
string file_path = "./archive.zip";
IronZipArchive.ExtractArchiveToDirectory(file_path, "unarchived"); // This will extract all files to the 'unarchived' directory
// Initiating a new ZIP archive
using (var archive = new IronZipArchive())
{
// Adding files to the archive
archive.Add("./assets/doc.pdf");
archive.Add("./assets/img.png");
// Saving the created ZIP archive
archive.SaveAs("./output/archive.zip");
}
- Media Types: Images (JPG, PNG, GIF, TIFF, SVG, BMP), Text files, and Documents (PDF, DOCX, XLSX)
- Audio: MP3, WAV
- Archive Types: ZIP, TAR, GZIP, BZIP2
- Supported Formats: ZIP, TAR, GZIP, BZIP2
For in-depth tutorials, code samples, and further documentation, head to https://ironsoftware.com/csharp/zip/
For queries, reach out to us at [email protected]
- How-To Guides: https://ironsoftware.com/csharp/zip/how-to/
- Code Samples: https://ironsoftware.com/csharp/zip/examples/
- Tutorials: https://ironsoftware.com/csharp/zip/tutorials/
- Licensing Information: https://ironsoftware.com/csharp/zip/licensing/
- Live Chat Support: https://ironsoftware.com/csharp/zip/#helpscout-support