码迷,mamicode.com
首页 > 数据库 > 详细

sandBoxPathFile

时间:2015-04-22 22:07:58      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

 //获得本应用程序的沙盒目录

    NSArray *array=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    NSString *path=[array objectAtIndex:0];

    NSLog(@"%@",path);

    

    //每个应用程序都有自己的沙盒目录,应用程序之间不能够相互访问沙盒目录

    //沙盒目录下具有Documents,Libray,temp

    //Documents目录下的文件会在itunes备份和恢复时一起备份到服务器和恢复到手机,程序中自己创建的文件需要放到Documents目录下

    //Libray存放的是系统的系统库,应用程序不能使用Libray目录

    //tmp目录存放临时文件,当从新启动时,会删除tmp目录下所有文件

    

    NSDictionary *dict=[[NSDictionary alloc]initWithObjectsAndKeys:@"a",@"b", nil];

    NSString *sandBoxPathFile=[NSString stringWithFormat:@"%@/abc.plist",path];

    //向本应用程序的沙盒目录的Documents文件下写入abc.plist

    [dict writeToFile:sandBoxPathFile atomically:YES];

    

    //读文件

    NSDictionary *readDict=[[NSDictionary alloc]initWithContentsOfFile:sandBoxPathFile];

    NSLog(@"%@",readDict);

 

sandBoxPathFile

标签:

原文地址:http://www.cnblogs.com/y16879w/p/4448663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!