ICSharpCode.SharpZipLib.Zip.FastZip 不压缩文件名中含有特殊字符的文件
我正在使用 ICSharpCode.SharpZipLib.Zip.FastZip 来压缩文件,但我遇到了一个问题:
当我尝试压缩文件名中包含特殊字符的文件时,它不起作用。当文件名中没有特殊字符时它起作用。
I am using ICSharpCode.SharpZipLib.Zip.FastZip
to zip files but I'm stuck on a problem:
When I try to zip a file with special characters in its file name, it does not work. It works when there are no special characters in the file name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我认为你不能使用 FastZip。您需要迭代这些文件并添加自己指定的条目:
entry.IsUnicodeText = true;
告诉 SharpZipLib 该条目是 unicode。
I think you cannot use FastZip. You need to iterate the files and add the entries yourself specifying:
entry.IsUnicodeText = true;
To tell SharpZipLib the entry is unicode.
如果您愿意,您可以继续使用
FastZip
,但您需要为其提供一个ZipEntryFactory
,以使用IsUnicodeText = true 创建
。ZipEntry
。You can continue using
FastZip
if you would like, but you need to give it aZipEntryFactory
that createsZipEntry
s withIsUnicodeText = true
.您必须下载并编译最新版本的 SharpZipLib 库,以便您可以使用
这里的代码片段(稍作修改):
You have to download and compile the latest version of SharpZipLib library so you can use
here is your snippet (slightly modified):
可能性 1:您将文件名传递给正则表达式文件过滤器。
可能性 2:zip 文件中不允许使用这些字符(或者至少 SharpZipLib 是这么认为的)
Possibility 1: you are passing a filename to the regex file filter.
Possibility 2: those characters are not allowed in zip files (or at least SharpZipLib thinks so)
尝试从文件名中取出特殊字符,即替换它。
你的
Filename.Replace("&", "&");
try to take out the special character from the file name, i,e replace it.
your
Filename.Replace("&", "&");