标签:
//第一种获取沙盒路径的方法
// NSString *pathStr = NSUserName();
// NSString *homePathStr = NSHomeDirectoryForUser(pathStr);
// NSLog(@"%@",homePathStr);
//第二种获取沙盒路经的方法
// NSString *homePathStr = NSHomeDirectory();
// NSLog(@"lllll----%@",homePathStr);
//获取document文件路径
NSString *documentStr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
// //打印tem文件夹得路径
// NSString *tmpStr = NSTemporaryDirectory();
// NSLog(@"tmeStr ==== %@",tmpStr);
//
// NSString *str = @"李四";
// //创建写入的地址。后面拼接文件名,如果没有的话 会自动创建 如果有 直接写入 文件的格式没有什么用
NSString *path = [documentStr stringByAppendingString:@"/李四.avi"];
//
// //atomically 原子性和非原子性
// [str writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
// NSLog(@"%@",path);
//
// NSString* str1 = [NSString stringWithContentsOfURL:path encoding:NSUTF8StringEncoding error:nil];
// NSLog(@"%@",path);
标签:
原文地址:http://www.cnblogs.com/liyuanxi/p/4857193.html