提取受保護的ZIP文件
使用 IronZIP 解壓縮受保護的 ZIP 檔案,支持普通、AES128 和 AES256 基礎加密。
要提取受保護的ZIP存檔,請在ExtractArchiveToDirectory
方法中將正確的密碼指定為Password參數的值。 此外,請指定 ZIP 檔案的位置以及您希望解壓縮檔案的目錄。
using IronZip; using IronZip.Enum; // Extract protected ZIP IronZipArchive.ExtractArchiveToDirectory("output.zip", "extracted", "P@ssw0rd");
Imports IronZip Imports IronZip.Enum ' Extract protected ZIP IronZipArchive.ExtractArchiveToDirectory("output.zip", "extracted", "P@ssw0rd")
Install-Package IronZip
使用 IronZIP 解壓縮受保護的 ZIP 檔案,支持普通、AES128 和 AES256 基礎加密。
要提取受保護的ZIP存檔,請在ExtractArchiveToDirectory
方法中將正確的密碼指定為Password參數的值。 此外,請指定 ZIP 檔案的位置以及您希望解壓縮檔案的目錄。