苹果在iOS 5系统时,对app的文件存储提出了新的要求。从它的guildline来看,是推荐开发者尽量把app生成的文件放在Caches目录下的。原文如下:

Only user-generated data or that cannot otherwise be recreated by your application, should be stored in the /Documents directory and rest should be stored to /Library/Caches directory。

照做会怎么样?

如果这么做的话,会出现两种情况

  1. 如果对此置之不理,继续把应用生成的文件放在Documents目录下,那么这些文件会被备份到iTunes或者iCloud。如果这些文件很大,那么用户可能需要为了同步消耗不少流量,然后苹果可能会因此拒绝你的应用上架,这是一个悲剧。
  2. 如果开发者照Apple说的干,把应用生成的文件放在Caches目录下,那么苹果不会拒绝你的应用,很happy。但是iOS 5会在磁盘空间紧张的时候删除Caches目录下的文件,这对用户来说可能是一个更大的悲剧。

如何应对新的文件存储策略?

开发者在这时陷入了两难的境地,但是到了iOS 5.0.1的时候,开发者多了第三种选择:

  • 继续把文件存储在Documents目录下,但是标记这些文件为不需要备份。详情请参考 technote (QA1719)

原文如下:

Q: My app has a number of files that need to be stored on the device permanently for my app to function properly offline. However, those files do not contain user data and don’t need to be backed up. How should I store those files in iOS 5?

A: Starting in iOS 5.0.1 a new “do not back up” file attribute has been introduced allowing developers to clearly specify which files should be backed up, which files are local caches only and subject to purge, and which files should not be backed up but should also not be purged. In addition, setting this attribute on a folder will prevent the folder and all of its contents from being backed up.

代码示例

给文件加上”do not back up”属性的代码如下,需要注意这个是iOS 5.0.1才有效,低于这个版本就别费劲了。

#include<sys/xattr.h>-(BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
{constchar* filePath =[[URL path] fileSystemRepresentation];constchar* attrName ="com.apple.MobileBackup";u_int8_t attrValue =1;int result = setxattr(filePath, attrName,&attrValue,sizeof(attrValue),0,0);return result ==0;}

最新文章

  1. 苹果未来:增强现实设备将会取代iPhone
  2. 《bootstrap》实战---作为了解
  3. Oracle primary,unique,foreign 区别,Hibernate 关联映射
  4. (转)springAOP解析-1
  5. ZOJ-3593 One Person Game 概率DP
  6. Asp.Net 前后台交互小结
  7. nginx access_log 完全关闭
  8. Spring--AOP--面向切面编程
  9. linux+tomcat+jdk环境验证码无法显示
  10. WINDOWS XP中用命令行管理用户 net user命令
  11. IDEA搭建SpringMVC+Mybatis+Mysql+Maven框架
  12. 使用socket搭建一个网络聊天室
  13. cmd命令行下登陆备份导入导出msql数据
  14. 安卓和java开发环境的安装
  15. Maven 命令参数 整理
  16. Windows 7 编译64位boost库
  17. Ubuntu1404 开启定时任务 crontab
  18. BugPhobia开发篇章:Beta阶段第VIII次Scrum Meeting
  19. grep/pgrep/egrep/fgrep
  20. Centos7部署open-falcon 0.2

热门文章

  1. loj2071 「JSOI2016」最佳团体
  2. Couchbase II( View And Index)
  3. 【Palindrome Partitioning】cpp
  4. MySQL出现错误1045,用户无法连接
  5. python - 接口自动化测试 - TestRecharge - 充值接口测试用例
  6. 初识面向对象-python
  7. Gym100623A Access Control Lists
  8. BZOJ3309 DZY Loves Math 【莫比乌斯反演】
  9. 字符串函数 (strfun)
  10. 【bzoj3119】Book