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

地址指针的使用

时间:2015-06-09 13:26:36      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

NSFileManager *fileManager = [NSFileManager defaultManager];

    //创建缩略图文件夹

    NSString *folderPath = [path stringByAppendingPathComponent:@"temp"];

    BOOL  isDir0 = NO;

    BOOL existed0 = [fileManager fileExistsAtPath:folderPath isDirectory:&isDir0];

    if ( !(isDir0 == YES && existed0 == YES) ){

        [fileManager createDirectoryAtPath:folderPath withIntermediateDirectories:YES attributes:nil error:nil];

    }

地址指针的使用

标签:

原文地址:http://www.cnblogs.com/wskgjmhh/p/4562982.html

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