用于本机 C++ 的 zip 库具有删除/修改功能

发布于 2024-11-06 13:13:07 字数 169 浏览 0 评论 0原文

我正在寻找一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别闹i 2024-11-13 13:13:07

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.

还在原地等你 2024-11-13 13:13:07

无法“就地”修改 zip 文件。甚至 Winzip 和 PKZip 也会进行复制。

It isn't possible to modify a zip file "in place". Even Winzip and PKZip make copies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文