用于分割卷 zip 文件的 .Net 库?
我需要使用 .Net 创建跨区(多卷)zip 文件,但我一直无法找到使我能够执行此操作的库。
Spanned zip 是一种 zip 压缩文件,分为多个文件,这些文件通常具有 .z00、.z01 等扩展名。
该库必须是开源的或免费的,因为我要将它用于开源项目。
(它与这个问题重复,但那里没有答案,我反正我不会专门针对 ASP)
I need to create spanned (multi-volume) zip files using .Net, but I have been unable to find a library that enables me to do it.
Spanned zip is a zip compressed file that is split among a number of files, which usually have extensions like .z00, .z01, and so on.
The library would have to be open-source or free, because I'm gonna use it for a open source project.
(it's a duplicate to this question, but there are no answers there and I'm not going for ASP specific anyway)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
DotNetZip 示例:
如果
segmentsCreated
返回为 5,则您拥有以下文件,每个文件的大小不超过 100kb。编辑注意: DotNetZip 曾经住在 Codeplex。 Codeplex 已关闭。旧存档仍然[可在 Codeplex 上找到][1]。代码似乎已迁移到 Github:
DotNetZip example:
if
segmentsCreated
comes back as 5, then you have the following files, each not more than 100kb in size.Edited To Note: DotNetZip used to live at Codeplex. Codeplex has been shut down. The old archive is still [available at Codeplex][1]. It looks like the code has migrated to Github:
DotNetZip 允许您执行此操作。从他们的文档中:
DotNetZip allows you to do this. From their documentation:
查看 SevenZipSharp 库。它支持多卷存档。
Take a look at the SevenZipSharp library. It supports multivolumes archives.