- UID
- 2
注册时间2004-12-1
阅读权限255
最后登录1970-1-1
总坛主
  
TA的每日心情 | 开心 2024-12-1 11:04 |
---|
签到天数: 12 天 [LV.3]偶尔看看II
|
- 获取主要目录路径的方式
- 沙盒目录
- NSLog(@"%@",NSHomeDirectory());
- MyApp.app
- NSLog(@"%@",[[NSBundle mainBundle] bundlePath]);
- tmp
- NSLog(@"%@",NSTemporaryDirectory());
- Documents
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *docPath = [paths objectAtIndex:0];
- NSLog(@"%@",docPath);
- Library
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
- NSString *libPath = [paths objectAtIndex:0];
- NSLog(@"%@",libPath);
复制代码
|
|