How to use the .NET ZipArchive and ZipArchiveEntry classes to extract a file with a PASSWORD
- 阅读更多 关于 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