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

获取沙盒文件夹路径的几个方法

时间:2016-05-03 20:28:57      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:

 1 #import "ViewController.h"
 2 
 3 @interface ViewController ()
 4 
 5 @end
 6 
 7 @implementation ViewController
 8 
 9 - (void)viewDidLoad {
10     [super viewDidLoad];
11 
12 #pragma mark - 第一种打开应用程序沙盒路径的方式
13     
14     // 地址是一个字符串
15     // NSSearchPathForDirectoriesInDomains:查找沙盒路径的函数,返回值是一个数组,这个数组里面只有一个元素,这个元素就是路径,直接使用下标取出即可
16     // 第一个参数:枚举值,枚举你具体要查找的文件夹(要进入哪个文件夹直接修改其枚举值即可【NSSearchPathDirectory:进入Document文件夹】)
17     // 第二个参数:NSUserDomainMask表示用户的主目录
18     // 第三个参数:一般设置为YES表示展示完整的路径
19     
20     // 进入Documents文件夹
21     NSString *documentPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
22     
23     NSLog(@"documentPath = %@", documentPath);
24     
25     
26     // 进入Caches文件夹
27     NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];
28     
29     NSLog(@"cachesPath = %@", cachesPath);
30     
31 
32 #pragma mark - 第二种打开应用程序沙盒路径的方式
33     
34     // 第一步:先找到主目录文件夹
35     NSString *homePath = NSHomeDirectory();
36     NSLog(@"homePath = %@", homePath);
37     
38     // 第二步:然后拼接自己想进入的文件夹名称
39     NSString *documentPathTwo = [homePath stringByAppendingPathComponent:@"Documents"];
40     NSLog(@"documentPathTwo = %@", documentPathTwo);
41     
42     
43     // 进入Library里面的Caches
44     NSString *libraryPathTwo = [homePath stringByAppendingPathComponent:@"Library/Caches"];
45     NSLog(@"libraryPathTwo = %@", libraryPathTwo);
46     
47 
48 #pragma mark - 特殊的文件夹的查找方式
49     
50     NSString *tmpPath = NSTemporaryDirectory();
51     NSLog(@"tmpPath = %@", tmpPath);
52     
53 }
54 
55 @end

 

获取沙盒文件夹路径的几个方法

标签:

原文地址:http://www.cnblogs.com/zhizunbao/p/5456234.html

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