标签:objective-c 文件 路径 逻辑判断 foundation框架
#import <Foundation/Foundation.h> //写入文件 int main(int argc, const char * argv[]) { @autoreleasepool { NSString * str = @"你是一只小狗 "; //创建路径 NSString * path =@"/Users/ms/Desktop/hello/my.txt"; NSError * error; //第一个参数给出路径 //atomically:YES BOOL isWriteSucess = [str writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:&error]; if(isWriteSucess) { NSLog(@"写入成功"); } else { NSLog(@"写入失败"); } //NSLog(@"%@",error); } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:objective-c 文件 路径 逻辑判断 foundation框架
原文地址:http://blog.csdn.net/u012701023/article/details/47052699