In this how to tutorial, we’ll show you how to extract Zip file in C# code. You can use C# to Unzip an archive in your applications. This code supports multiple zip or archive file formats like GZip, RAR, TAR, 7Zip and more.
Steps to Extract Zip File in C#
- Install Aspose.Zip for .NET package from NuGet.org
- Include Aspose.Zip namespace in the code
- Use SetLicense method to setup license of Aspose.Zip API
- Load input Zip file into a FileStream object
- Create a new Archive object from the file stream
- Get count of files in the archive and loop through the archive entries
- Extract each archive entry and save the file to the disk
Each entry in the archive contains not only file, but also the name of the file. We have used the Name property to get the file name and then extracted file with the same name.
Code to Extract Zip File in C#
In the above code, we have used FileStream to load the Zip archive and then saved the extracted output files on the disk. You can also use this code in C# to unzip file in memory. This can be helpful when you need those files further in the code or application and do not want to save to disk. Using this code, you can easily and quickly create your own C# Zip extractor in your applications or as an independent utility.