用于本机 C++ 的 zip 库具有删除/修改功能
我正在寻找一个简单的 zip 库(最好没有 dll/lib),它将具有 zip 修改功能。
到目前为止,我发现更新/删除条目的唯一选择是创建一个临时文件并将所有内容写入该临时文件,然后将其重命名为原始文件。
有谁知道更好的方法来更新/删除 zip 条目而不会造成混乱?
谢谢!
I am looking for a simple zip library (prefers without dll/lib) that will have zip modification capabilities.
The only option I've found so far to update/remove entries is by creating a temp file and writing everything to this temp, and than rename it to the original file.
Does anyone know a better way to update/remove zip entries without all that mess?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
libzip 支持替换:zip_replace(3) 和删除:zip_delete(3) zip 存档中的文件。
libzip has support for replacing: zip_replace(3) and deleting: zip_delete(3) files in a zip archive.
无法“就地”修改 zip 文件。甚至 Winzip 和 PKZip 也会进行复制。
It isn't possible to modify a zip file "in place". Even Winzip and PKZip make copies.