首页 > 其他 > 详细

在MAC桌面上新建文件夹和文件

时间:2014-04-01 22:25:14      阅读:579      评论:0      收藏:0      [点我收藏+]
#import <Foundation/Foundation.h>
#define getb(x) x==0? @"失败" : @"成功"
int main(int argc, const char * argv[])
{

    @autoreleasepool
    {
        
        NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDesktopDirectory, NSUserDomainMask, YES);
        NSString* thepath = [paths lastObject];
        NSLog(@"桌面目录:%@", thepath);
        
        thepath = [thepath stringByAppendingPathComponent:@"testfolder"];
        NSLog(@"桌面目录:%@", thepath);
        NSFileManager* fm = [NSFileManager defaultManager];
        BOOL b = [fm createDirectoryAtPath:thepath withIntermediateDirectories:NO attributes:nil error:nil];
        NSLog(@"添加文件夹%@",getb(b));
        thepath= [thepath stringByAppendingPathComponent:@"a.txt"];
        
        NSData * data = [@"爱是恒久远" dataUsingEncoding:NSUTF8StringEncoding ];
        b = [fm createFileAtPath:thepath contents:data attributes:nil];
        NSLog(@"添加文件%@",getb(b));
       
    }
    return 0;
}

在MAC桌面上新建文件夹和文件,布布扣,bubuko.com

在MAC桌面上新建文件夹和文件

原文:http://blog.csdn.net/chairwon/article/details/22747643

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!