I am using delphi 7 and need to uncompress a compressed zip file which contains multiple files, I have found examples of how to unzip a single file using ZLib but cannot find any examples of this with muliple files in the zip, would it be possible for someone to either give me an example or point me in the direction of one
thanks
Colin

ZLib<>Zip.ZLibis a generic data compression library, whileZipis a compression and file format library. Just because they both start withZdoesn't make them compatible. :) For working withZipfiles, use aZiplibrary, likeAbbrevia(mentioned by @ErikKnowles below). If you want to useZLib, you'll have to find a library that wraps it withZip-compatiblefile I/O anyway, sinceZLibknows nothing aboutZipheaders and multiple files. – Ken White May 16 '12 at 22:14