是否可以从调试器控制台上查看iphone上的Documents文件夹的内容

时间:2010-08-11 08:53:30

标签: iphone

我想从控制台看到Documents文件夹的内容,我可以看到模拟器,但它不适用于设备

我的路径 / var / mobile / Applications / 3E79C7B3-2639-477F-B355-1A3C70D4ECBE / Documents 但如何检查?

1 个答案:

答案 0 :(得分:5)

您可以像这样获取Documents目录的位置:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
path = [paths objectAtIndex:0];

然后只需将目录的内容打印到控制台:

NSLog(@"%@", [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:nil]);

以下是相关文档:http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/LowLevelFileMgmt/Articles/StandardDirectories.html