我的应用程序创建/ var / mobile /文件夹,但我无法在Finder中找到它

时间:2014-10-30 23:36:46

标签: ios xcode5 clang

我的Xcode应用程序创建了一个文档和资源路径。当我打印出这两个路径变量时,请参阅下面的控制台输出:

enter image description here

但是,当我尝试在Finder中找到此文件夹时,我被告知该文件夹不存在。

enter image description here

为什么?!

获取这两条路径的代码如下:

// 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]);

谢谢!

1 个答案:

答案 0 :(得分:0)

应该在iPhone / iPad的文件系统上,而不是在Mac上。否则转到文件夹... 是检查目录的正确方法。