I need a C# library for zipx [closed]

假装没事ソ 提交于 2019-12-25 04:35:53

问题


I need to extend my application to unzip .zipx files. This appears to be the latest and greatest zip compression from WinZip.

Does anyone know of a library that will do this?

Thanks


回答1:


One thing I would suggest is looking here.

it seems they are open to developers.

http://www.winzip.com/comp_info.htm




回答2:


According to Wikipedia WinZip uses .zipx as extension for Zip archives that use compression methods newer than deflate. Deflate is perhaps the minimum standard of Zip which everyone can compress or extract but newer algorithms like bzip2, LZMA or PPMd+ are also defined by the standard.

As for libraries which are able to handle newer compression algorithms you may have luck with SharpZipLib which implements at least bzip2 compression. There is also DotNetZip but it seems to be a little low on newer features.




回答3:


As Johannes Rossel mentioned SharpZipLib is a decent compression library written in C# and has source code available. This library is used in various projects as well and seems to have decent support. The only negative aspect is that I don't think they currently support WinZip's new zipx format. In fact I haven't found any other application or library that currently supports this new format other than WinZip. If you need a library for their new format probably the first place to start checking is with the WinZip support department to see if they have a native library available that could be wrapped or some specifications on the new format. If this file format is a closed spec then unfortunately you may not have many options.



来源:https://stackoverflow.com/questions/1200289/i-need-a-c-sharp-library-for-zipx

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!