码迷,mamicode.com
首页 > 其他好文 > 详细

在沙盒中创建文件方法

时间:2015-08-10 23:45:32      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 

 

 

 

 1 - (void)creatPlistFile{
 2     NSArray *array = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
 3     NSString *path = [array objectAtIndex:0];
// 拼接
phoneContact.plist时,有的Xcode不加/也行
 4 plistPath = [path stringByAppendingString:@"/phoneContact.plist"];
5 NSFileManager *fileManager = [[NSFileManager alloc]init]; 6 if (![fileManager fileExistsAtPath:plistPath]) { 7 BOOL isOk = [fileManager createFileAtPath:plistPath contents:nil attributes:nil]; 8 if (isOk) { 9 NSLog(@"创建成功"); 10 } 11 else{ 12 NSLog(@"创建失败"); 13 } 14 } 15 }

 

在沙盒中创建文件方法

标签:

原文地址:http://www.cnblogs.com/doublelongliu/p/4719485.html

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