Link to home
Start Free TrialLog in
Avatar of b_levitt
b_levitt

asked on

Decompress old IMPLODE zip file with C#

I've got some zip files coming from a very old mainframe that I would like to decompress.  They will unzip with the built in windows "compressed folders" utility and older version of winzip (I read that version 12 no longer supports deflate), but I want to automate it.  Free libs like SharpZipLib or ZipLib are out as they are mostly based on the built in (and much more common) "deflate" algorithm.  Can anybody direct me to a component that will handle the decompression of these files?  I'd even settle for the shareware command line version of pkunzip if such a thing exists anymore (although a component would be my first choice).
Avatar of b_levitt
b_levitt

ASKER

By the way 7zip seems to be my command line option:
http://www.7-zip.org/

I'd still be interested in a component though.
Just about anything recent regarding creating zip files uses the 'deflate' algorithm.  These old files I have were zipped using implode (the old pkzip format).  I doubt anything exists but I thought I would ask.
ASKER CERTIFIED SOLUTION
Avatar of zwei
zwei
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the effort zwei.  Thanks for a couple of those links Mogal.