访问 zip 文件
如何访问 zip 文件的内容?
我正在尝试用 C 语言编写一个程序,我想使用 zip 使用的库。
How can I access to the contents of a zip file?
I'm trying write a program in C and I want use the libraries used by zip.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Info-zip 项目 有相关代码。
The Info-zip project has code for that.
Minizip,包含在 zlib 就是您所需要的。在“contribs”目录中查找代码。有一个 zip/unzip 示例,可以轻松包含在项目中。
Minizip, which is included with zlib is what you need. Look in the 'contribs' directory for the code. There is an example for zip/unzip and is easily included in a project.
您可能需要检查广泛使用的开源库ZLIB。
该链接提供了示例代码,主页提供了有关库、源代码、安装和使用的更多信息。
You may want to check the open source widely used library ZLIB.
The link provides sample code and the home page provides more information about the libraries, source code, installation and usage.