Shumii
Shumii

Reputation: 4581

How to use the .NET ZipArchive and ZipArchiveEntry classes to extract a file with a PASSWORD

I am extracting the contents of a zip file with the following code:

using(ZipArchive zipArchive = new ZipArchive(memoryStream))
{
    foreach (ZipArchiveEntry entry in zipArchive.Entries)
    {
        entry.ExtractToFile("extract.txt");
    }
}

This works perfectly for those zip files which are not password protected, however, I need it to also work for those passwords which are password protected.

I have seen other samples which can achieve what I want using other classes or other code but I find this way to be very clean and I hope that there is a property where I can set the password (it shouldn't need to be any more difficult than that).

Upvotes: 0

Views: 8965

Answers (1)

Bobson
Bobson

Reputation: 13696

As Oded said, the built-in classes don't support passwords. You should try an external library like DotNetZip. It's free, powerful, and supports just about everything you'd need.

In this case, the example for you is:

 using (ZipFile zip = ZipFile.Read(ExistingZipFile))
  {
    ZipEntry e = zip["TaxInformation-2008.xls"];
    e.ExtractWithPassword(BaseDirectory, Password);
  }

Upvotes: 3

Related Questions