SevenSharpZip is only a wrapper around the native 7zip dll. I prefer SharpZipLib as a pure .NET compression solution, however it doesn't support Deflate64. I had a crack at adding support but I'm to unfamiliar with their ZIP implementation. There is a standard but the different implementations are so different. I ended up using SevenSharpZip, however I did come across an error recently - I'm adding the ability to back up the archive before running operations, which I recommend to others.
发布评论
评论(2)
我有一个类似的问题。
我的问题是我试图从 64 位 exe 调用 unzip32.dll。
看看这个:
在 64 位 .Net 应用程序中导入 32 位 dll
I had a similar problem to this.
My problem was that I was trying to call the unzip32.dll from a 64-bit exe.
Check this out:
32 bit dll importing in 64 bit .Net application
SevenSharpZip 只是本机 7zip dll 的包装器。我更喜欢 SharpZipLib 作为纯 .NET 压缩解决方案,但它不支持 Deflate64。我尝试过添加支持,但我不熟悉他们的 ZIP 实现。有一个标准,但不同的实现有很大不同。我最终使用了 SevenSharpZip,但是最近我确实遇到了一个错误 - 我添加了在运行操作之前备份存档的功能,我向其他人推荐这一功能。
SevenSharpZip is only a wrapper around the native 7zip dll. I prefer SharpZipLib as a pure .NET compression solution, however it doesn't support Deflate64. I had a crack at adding support but I'm to unfamiliar with their ZIP implementation. There is a standard but the different implementations are so different. I ended up using SevenSharpZip, however I did come across an error recently - I'm adding the ability to back up the archive before running operations, which I recommend to others.