我需要有我的应用程序的路径之后 Document文件夹。
考虑我有这个路径:myapp/sandbox/Documents/a/b/c/Documents/d/e/myfile.txt 。
我需要一个程序来获得这个路径:a/b/c/Documents/d/e/myfile.txt 。
如何获得第二条路径?
Best Answer-推荐答案 strong>
//试试这个
NSString * str_DocDirPath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0] stringByAppendingPathComponent"a/b/c/d/e/myfile.txt"];
关于ios - 在ios开发中获取文档文件夹后的路径,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/18075270/
|