我的Xcode应用程序创建了一个文档和资源路径。当我打印出这两个路径变量时,请参阅下面的控制台输出:
但是,当我尝试在Finder中找到此文件夹时,我被告知该文件夹不存在。
为什么?!
获取这两条路径的代码如下:
// Get the path to the resource directory.
NSString* resourcePath= [[NSBundle mainBundle] resourcePath];
std::string *resourcePathCPP = new std::string([resourcePath UTF8String]);
// Get the path to the Documents direcotory
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* documentsPath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
std::string *documentsPathCPP = new std::string([documentsPath UTF8String]);
谢谢!
答案 0 :(得分:0)
应该在iPhone / iPad的文件系统上,而不是在Mac上。否则转到文件夹... 是检查目录的正确方法。