开发者

C library to read from zip archives

开发者 https://www.devze.com 2023-01-01 05:58 出处:网络
Is there a portable C library to access .zip archives? \"gzip\" or \"zlib\" (the closest I could find) only handle compressed data, I need to be able to list the files inside the archive, and access e

Is there a portable C library to access .zip archives? "gzip" or "zlib" (the closest I could find) only handle compressed data, I need to be able to list the files inside the archive, and access each one individuall开发者_如何学Cy, and if they're compressed using the 'deflate' method, I can use zlib on it.


Minizip, maybe?

http://www.winimage.com/zLibDll/minizip.html


The zip that comes with Linux and BSD is actually called info-ZIP which is here. Personally I have not tried such a thing but the info-zip front page states "Info-ZIP's primary compression engine has also been spun off into the free zlib compression library", so you might want to check out zlib. The zlib page has a FAQ with a answer to your specific question. I would start by studying how info-zip works. Good luck.


7-zip has a complete SDK, with example sources, and a lot of functionality.

take a look here

0

精彩评论

暂无评论...
验证码 换一张
取 消