如何在 Objective-C 中创建 Zip 存档文件?
我试图找到一种在 Objective-C 中创建 zip 存档(或 GZip 存档)的方法,但我对该语言的了解仍然缺乏。
我在 这个问题,但它似乎没有回答如何制作存档的问题。
明确地说:我所说的存档是指相当于 zip 文件或 GZip 文件,它内部包含许多不同的文件,并且被存档然后压缩以作为单个实体进行传输或使用。
I have attempted to find a way to create a zip archive (or GZip archive) in Objective-C, but my knowledge of the language is still lacking.
I see a way to compress an existing data structure in this question, but it does not seem to answer the question of how to make an archive.
To be explicitly clear: by archive I mean the equivalent of a zip file or GZip file that contains many different files internally, and are archived and then compressed for transfer or usage as a single entity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终从命令行使用 zip 命令而不是执行 tar 存档。
I ended up using a zip command from a command line instead of doing the tar archive.