iPhone 中的 zip 目录
是否可以以编程方式压缩 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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