博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
applicationDocumentsDirectory Path 与 URL
阅读量:5239 次
发布时间:2019-06-14

本文共 1063 字,大约阅读时间需要 3 分钟。

-(NSURL*)applicationDocumentsDirectory{    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];}-(NSString*)applicationDocumentsDirectoryPath{    return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];}

区别如下:

NSLog(@"%@",storeURL);NSLog(@"%@",storePath);NSLog(@"%@",[storeURL absoluteString]);

结果分别为

file://localhost/Users/apple/Library/Application%20Support/iPhone%20Simulator/6.0/Applications/A2187B83-2937-46AC-9829-D87B4D292E7C/Documents/

/Users/apple/Library/Application Support/iPhone Simulator/6.0/Applications/A2187B83-2937-46AC-9829-D87B4D292E7C/Documents/

file://localhost/Users/apple/Library/Application%20Support/iPhone%20Simulator/6.0/Applications/A2187B83-2937-46AC-9829-D87B4D292E7C/Documents/

因此若需要使用方法

NSFileManager* fileManager = [NSFileManager defaultManager];[fileManager fileExistsAtPath:storePath];

必须使用applicationDocumentsDirectoryPath,而不能使用 [URL absoluteString];

 

转载于:https://www.cnblogs.com/wxy325/archive/2013/01/31/2886575.html

你可能感兴趣的文章
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>