gpt4 book ai didi

c# - Ionic.Zip 提取文件并忽略密码

转载 作者:行者123 更新时间:2023-11-30 16:26:15 25 4
gpt4 key购买 nike

我在我的 Pocket-PC 项目中使用 Ionic.Zip(Compact Framework 版本)。
提取压缩文件(使用 Ionic.Zip)工作正常。如果我将密码放在压缩文件上,它在解压前需要密码,但是当我尝试这个实例时,解压密码验证失败。

示例:这个文件夹即将被压缩。

\MyDevice\My Documents\My Pictures  

这个文件夹包含两个文件('Flower.jpg','Waterfall.jpg')
使用此代码压缩文件:

public string Compress(string[] Paths, string SaveFileName, string Password, string CompressionType)
{
try
{
using (ZipFile zip = new ZipFile())
{
if (string.IsNullOrEmpty(Password))
zip.Password = Password;
zip.CompressionLevel = Utility.GetCompressionLevel(CompressionType);
foreach (string item in Paths)
{
if (Utility.IsDirectory(item))
zip.AddDirectory(item);
else if (Utility.IsFile(item))
zip.AddFile(item);
}
if (!SaveFileName.Trim().ToLower().EndsWith(".zip"))
if (SaveFileName.Trim().EndsWith("."))
SaveFileName += "zip";
else
SaveFileName += ".zip";

zip.Save(SaveFileName);
}
return Utility.GetResourceString("ZipSuccess");
}
catch (Exception ex)
{
return ex.Message;
}
}

提取码:

public string Decompress(string ZipFilePath, string TargetPath, string Password, bool OverwriteExistingFiles)
{
try
{
using (ZipFile decompress = ZipFile.Read(ZipFilePath))
{
if (!string.IsNullOrEmpty(Password))
decompress.Password = Password;

foreach (ZipEntry e in decompress)
{
e.Extract(TargetPath, OverwriteExistingFiles ? ExtractExistingFileAction.OverwriteSilently : ExtractExistingFileAction.DoNotOverwrite);
}
}
return Utility.GetResourceString("ExtractSuccess");
}
catch (Exception ex)
{
return ex.Message;
}
}

在此位置提取文件效果很好,因为它需要密码:

\MyDevice\My Documents\Personal  

但是!当我在同一文件夹中提取文件时:

\MyDevice\My Documents\My Pictures  

无需密码即可提取文件。
我认为这是一个错误。我能为此做什么?
希望有人能回答。谢谢!

最佳答案

您的 Compress() 方法中存在错误。压缩文件时,永远不会设置 ZipFile 实例的密码属性。查看决定是否分配 zip.Password 属性的逻辑。

内容如下:

if (string.IsNullOrEmpty(Password))
zip.Password = Password;

如前所述,仅当 Password 参数为 null 或空字符串时,才会设置 zip.Password 属性。如果 Password 参数是非空字符串,代码将跳过 zip.Password 赋值语句。

您的 Compress() 方法中的 if 语句缺少 not 运算符。它应该是:

if ( ! string.IsNullOrEmpty(Password))
zip.Password = Password

关于c# - Ionic.Zip 提取文件并忽略密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8982112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com