Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
What current library are you using? – Daniel A. White Jul 29 '09 at 13:33
And why do you want to support zipx? – Daniel A. White Jul 29 '09 at 13:42
Would it be ok if the library were written in VB.NET or some other .NET language? Why do you need it to be C#? – John Saunders Jul 29 '09 at 13:56

4 Answers

Alternatively, tell WinZip where they can stick their closed proprietary compression format.

share|improve this answer
2  
+1 as i loled. – tim Jul 29 '09 at 13:40
Except for the non-standard extension It doesn't sound too proprietary to me. Compression algorithms like bzip2 are specified by the Zip standard. – Јοеу Jul 29 '09 at 13:52
1  
and LZMA, and PPMd. But, not many tools and libraries support all these compression formats, and in particular Windows Explorer does not. So .zipx is tantamount to saying "you can open this only with WinZip." Not sure if 7zip opens zip files that use LZMA compression. – Cheeso Jul 30 '09 at 4:35
While neither SharpZipLib nor DotNetZip have support listed, 7Zip 4.65 was able to open any zipx archive that I found online. Hopefully that helps somebody. – dariusz Feb 4 '10 at 18:26

One thing I would suggest is looking here.

it seems they are open to developers.

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

share|improve this answer

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.

share|improve this answer
DotNetZip does DEFLATE. Does not currently do bzip2, LZMA or PPMd. – Cheeso Jul 30 '09 at 0:59
That was my fear. Didn't find much definitive info on their page, though. – Јοеу Jul 30 '09 at 1:07
(I wrote DotNetZip). I guess it would be possible to produce an LZMA and PPMd capability but never got a formal request. I looked at the LZMA SDK but my head spins when I see the code. Feasible, but it will take some effort. – Cheeso Jul 30 '09 at 4:34

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.

share|improve this answer
1  
It's still the old format. It's just a kind of marker that the archive uses newer compression algorithms than deflate. – Јοеу Jul 30 '09 at 1:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.