码迷,mamicode.com
首页 > 移动开发 > 详细

获取App的Documents路径

时间:2014-05-08 09:28:59      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   string   c   com   

有两种写法可以获取到Documents的路径

1. 

1
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

  这种写法不是很严谨

2.

1
2
NSArray *filePath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [filePath objectAtIndex:0];

  这种获取路径的方法比较好,不是自己写死了路径。

 

获取App的Documents路径,布布扣,bubuko.com

获取App的Documents路径

标签:blog   class   code   string   c   com   

原文地址:http://www.cnblogs.com/huangzizhu/p/3714975.html

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