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

创建文件夹

时间:2015-05-13 19:33:09      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

 NSString *homePath = NSHomeDirectory();
    NSString *systemLogPath = [homePath stringByAppendingPathComponent:@"Documents/DearMob/SystemLog"];
    NSLog(@"%@",systemLogPath);
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsPath = [paths objectAtIndex:0];
    
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSString *testDirectory = [documentsPath stringByAppendingPathComponent:@"DearMob/SystemLog"];
    NSLog(@"%@",testDirectory);
    // 创建目录
    BOOL res=[fileManager createDirectoryAtPath:systemLogPath withIntermediateDirectories:YES attributes:nil error:nil];

 

创建文件夹

标签:

原文地址:http://www.cnblogs.com/ZhangYuGe/p/4501076.html

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