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
.ZLib
is a generic data compression library, whileZip
is a compression and file format library. Just because they both start withZ
doesn't make them compatible. :) For working withZip
files, use aZip
library, likeAbbrevia
(mentioned by @ErikKnowles below). If you want to useZLib
, you'll have to find a library that wraps it withZip-compatible
file I/O anyway, sinceZLib
knows nothing aboutZip
headers and multiple files. – Dialogist