在iphone指定目录写文件log

来源:互联网 发布:nginx for linux下载 编辑:程序博客网 时间:2024/05/01 10:26
NSString * hisPath = [[NSPathEx DocPath] stringByAppendingFormat:@"/Log.txt"];NSString* strHistory = [NSString stringWithContentsOfFile:hisPath encoding:NSUTF8StringEncoding error:nil];if (strHistory != nil) {NSString* newStr = [strHistory stringByAppendingString:strLog];[newStr writeToFile:hisPath atomically:YES encoding:NSUTF8StringEncoding error:nil];}else {[strLog writeToFile:hisPath atomically:YES encoding:NSUTF8StringEncoding error:nil];}

原创粉丝点击