gpt4 book ai didi

c# - ICSharpCode.SharpZipLib.Zip.FastZip 不压缩文件名中包含特殊字符的文件

转载 作者:太空狗 更新时间:2023-10-29 17:47:17 25 4
gpt4 key购买 nike

我正在使用 ICSharpCode.SharpZipLib.Zip.FastZip 来压缩文件,但我遇到了一个问题:

当我尝试压缩文件名中包含特殊字符的文件时,它不起作用。它在文件名中没有特殊字符时有效。

最佳答案

我认为您不能使用 FastZip。您需要迭代文件并添加自己指定的条目:

entry.IsUnicodeText = true;

告诉 SharpZipLib 条目是 unicode。

string[] filenames = Directory.GetFiles(sTargetFolderPath);

// Zip up the files - From SharpZipLib Demo Code
using (ZipOutputStream s = new
ZipOutputStream(File.Create("MyZipFile.zip")))
{
s.SetLevel(9); // 0-9, 9 being the highest compression

byte[] buffer = new byte[4096];

foreach (string file in filenames)
{
ZipEntry entry = new ZipEntry(Path.GetFileName(file));

entry.DateTime = DateTime.Now;
entry.IsUnicodeText = true;
s.PutNextEntry(entry);

using (FileStream fs = File.OpenRead(file))
{
int sourceBytes;
do
{
sourceBytes = fs.Read(buffer, 0, buffer.Length);

s.Write(buffer, 0, sourceBytes);

} while (sourceBytes > 0);
}
}
s.Finish();
s.Close();
}

关于c# - ICSharpCode.SharpZipLib.Zip.FastZip 不压缩文件名中包含特殊字符的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4245688/

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