码迷,mamicode.com
首页 > 移动开发 > 详细

iOS文件操作

时间:2015-06-26 19:28:32      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

  //找到Documents文件所在的路径
    NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    //取得第一个Documents文件夹的路径
    
    NSString *filePath = [path objectAtIndex:0];
    
   
    
    NSString *plistPath = [filePath stringByAppendingPathComponent:@"collectionData.plist"];

    //存入(沙盒)
    [data writeToFile:plistPath atomically:YES];
    //读取(沙盒)
    NSArray *arr1 = [NSArray arrayWithContentsOfFile:plistPath];
     NSLog(@"%@",plistPath);
    NSLog(@"%@",arr1);
    
    NSString *bundlePath = [[NSBundle mainBundle]pathForResource:@"collectionData" ofType:@"plist"];
    NSLog(@"%@",bundlePath);
    //读取(Bundle)
    NSArray *arr2 = [NSArray arrayWithContentsOfFile:bundlePath];
    NSLog(@"---------%ld",arr2.count);

 

iOS文件操作

标签:

原文地址:http://www.cnblogs.com/hxwj/p/4602892.html

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