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

获取沙盒路径的方法

时间:2015-10-06 16:38:56      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

 //第一种获取沙盒路径的方法
//    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

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