Skip to content
| Marketplace
Sign in
Visual Studio>Controls>Aspose.ZIP for .NET
Aspose.ZIP for .NET

Aspose.ZIP for .NET

Aspose Marketplace

|
229 clicks
| (0) | Free Trial
Aspose.ZIP for .NET is an easy to use API to compress, decompress and encrypt archives and files within .NET applications without knowing the detail of compression formats.
Get Started

.NET API to Manipulate Zipped Archives

Nuget Nuget

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

It is a standalone .NET API to create, manipulate, extract & protect archive formats including ZIP, BZIP, BZ2 & TAR.

Aspose.ZIP for .NET class library allows your .NET applications to compress/decompress files and folders without getting into the complexity of coding new compression algorithms or understanding the existing ones. Enable your programs to work with a vast range of features, such as creating archives, saving archives, archive extraction, encrypting/decrypting archives, compressing single or multiple files as well as directory contents. It also allows you to apply security to your archived and compressed files and folders via password, AES (128, 192, 256) encryption, or mixed encryption.

Archive Processing Features

  • Compress files and folders into standard ZIP formats.
  • Supports Deflate, Bzip2 & LZMA compression algorithms.
  • Apply simple password or AES128, AES192, AES256 encryption to archives.
  • Employ different protection schemes for each file within an archive.
  • Append more files to an existing zipped archive.
  • Use Gzip or Bzip2 to pack files & folders into a TAR archive.
  • Supports LZMA or LZMA2 compression & optional encryption to create 7z archives.
  • Create self-extracting compressed archives.

Read & Write ZIP Formats

ZIP: ZIP
Unix: TAR
GNU: GZIP
Unix/Linux: BZ2

Save ZIP Formats As

7z

Platform Independence

Aspose.ZIP for .NET is implemented using Managed C# and can be used with any .NET language like C#, VB.NET, F#, and so on. It can be integrated with any kind of .NET application, from ASP.NET web applications to Windows .NET applications.

Get Started

Are you ready to give Aspose.ZIP for .NET a try? Simply execute Install-Package Aspose.Zip from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.ZIP for .NET and want to upgrade the version, please execute Update-Package Aspose.Zip to get the latest version.

Compress DAT as ZIP using C# Code

You can execute the following code snippet to see how Aspose.ZIP API works in your environment or check the GitHub Repository for other common usage scenarios.

using(var arch = new Archive()) {
  arch.CreateEntry("filename.dat", dir + "file.dat");
  arch.Save(dir + "result.zip");
}

Create 7z Archive with AES Encryption

Aspose.Zip for .NET allows you to apply password protection and encryption to zipped archives. The following C# code sample demonstrates the creation of a Seven Zip file with AES encryption setting.

using(var archive = new SevenZipArchive(new SevenZipEntrySettings(null, new SevenZipAESEncryptionSettings("p@s$")))) {
  archive.CreateEntry("data.bin", new MemoryStream(new byte[] {
    0x00,
    0xFF
  }));
  archive.Save("archive.7z");
}

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft