ios沙盒路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios沙盒路径相关的知识,希望对你有一定的参考价值。
http://www.cnblogs.com/ios-wmm/p/3299695.html
iOS沙盒路径的查看和使用
NSString *path = NSHomeDirectory();//主目录 NSLog(@"NSHomeDirectory:%@",path); NSString *userName = NSUserName();//与上面相同 NSString *rootPath = NSHomeDirectoryForUser(userName); NSLog(@"NSHomeDirectoryForUser:%@",rootPath); NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory=[paths objectAtIndex:0];//Documents目录 NSLog(@"NSDocumentDirectory:%@",documentsDirectory);
以上是关于ios沙盒路径的主要内容,如果未能解决你的问题,请参考以下文章