从文件夹创建 zip 文件 - 在 c++ 中
我想创建一个程序,在执行时将压缩选定的文件夹。
能做到吗?
I want to create a program that , when executed, will compress a selected folder.
Can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想使用 boost,还有 zlib 以及 minizip,它是 zlib 的包装,用于管理 zip 文件。
If you don't want to use boost, there's also zlib, along with minizip, which is a wrapper around zlib for managing zip files.
在 C++ 中,最好的选择可能是使用 Boost 库。 您可以在此处找到它。
In C++ probably the best option is to go to the Boost library. You can find it here.