Is anyone aware of a C# zip library which is legacy (ZIP 2.0) compression compatible?
Asked
Active
Viewed 509 times
3 Answers
1
I used and still use this one (SharpZipLib): http://www.icsharpcode.net/opensource/sharpziplib/

Davide Piras
- 43,984
- 10
- 98
- 147
-
Thanks. Which of their compression modes: Stored, Deflated, Deflate64, BZip2, WinZipAES is the one I am looking for? The last two are not supported. My question is related to: http://stackoverflow.com/questions/5420302/get-kmz-file-from-controller – cs0815 Mar 24 '11 at 14:55
1
Have you tried DotNetZip?

Ira Rainey
- 5,173
- 2
- 34
- 42
-
-
-
This helped. See my answer here: http://stackoverflow.com/questions/5420302/get-kmz-file-from-controller alternat. you can use gzOs.UseZip64 in the original code. – cs0815 Mar 24 '11 at 15:55