iPhone 中的 zip 目录

发布于 2024-10-28 06:13:12 字数 154 浏览 3 评论 0原文

是否可以以编程方式压缩 iPhone 中的目录? (我不是在询问文件)

我尝试使用 zlib。 当获取目录的数据时,它返回 0

我尝试过

[NSData dataWithContentsOfFile:dir];

Is it possible to zip the directory in iPhone programmatically?
(I am not asking about the files)

I tries with zlib.
When getting the data of a directory it return 0

I tried with

[NSData dataWithContentsOfFile:dir];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愚人国度 2024-11-04 06:13:12

Zlib 听起来是一个不错的选择。但是,您不能只将目录作为参数传递;您必须迭代目录中的每个文件。

请参阅压缩目录文件的示例:

http://wdlindmeier.com/blog/blog/posts/ compressing_directory_contents_on_the_iphone_with_zlib

Zlib sounds like a good choice. You can't just pass a directory as a parameter, though; you have to iterate over each file in the directory.

See this example of compressing a directory's files:

http://wdlindmeier.com/blog/blog/posts/compressing_directory_contents_on_the_iphone_with_zlib

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