How to use the .NET ZipArchive and ZipArchiveEntry

2019-09-18 10:06发布

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).

Thanks in advance.

1条回答
混吃等死
2楼-- · 2019-09-18 10:51

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);
  }
查看更多
登录 后发表回答