对于 c# 和 .net,什么是好的商业 tar 流库?
我们目前正在使用 SharpZipLib,但由于它使用 GPL,我们需要将其替换为商业库。
We are currently using SharpZipLib but since it uses the GPL we need to replace it with a commercial lib.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请参阅我在主帖上关于 #ziplib 的评论...但如果您确实需要商业产品(非开源),IP* 有效! Zip .NET 可能符合要求。 根据此,它确实具有 TAR 支持。
See my comment about #ziplib on the main post... but if you really need a commercial product (not open-source), IP*Works! Zip .NET might fit the bill. It does have TAR support according to this.
您看过 DotNetZip 吗?
它不受 GPL 约束,而是受 Microsoft 公共许可证 (Ms-PL) 约束。
Have you looked at DotNetZip?
It is not under the GPL, but rather the Microsoft Public License (Ms-PL).
仅供参考。 可以选择使用 BSD 许可库进行 tar 读/写。 您可以使用 microsoft .NET 2.0 中的内置 GZipStream 进行 Gzip 压缩和解压缩
http:// code.google.com/p/tar-cs/
Just FYI. There is an option to use BSD licensed library for tar reading/writing. Gzip compression and decompression you can do with build-in GZipStream from microsoft .NET 2.0
http://code.google.com/p/tar-cs/
如果您想要 tar 库,可以在
http://cheeso.members.winisp.net/srcview.aspx?dir=Tar&file=Tar.cs
If you want a tar library, there is a single-module implementation at
http://cheeso.members.winisp.net/srcview.aspx?dir=Tar&file=Tar.cs