这真让我抓狂...

用这个简单的代码,我一直在ipad设备上找不到文件...

NSFileManager *filemgr;

    filemgr = [NSFileManager defaultManager];

    if ([filemgr fileExistsAtPath: @"scoreCards.dgs" ] == YES)
        NSLog (@"File exists");
    else
        NSLog (@"File not found");




我想念什么吗?

最佳答案

您需要使用pathForResource:ofType:类的NSBundle方法获取资源文件路径。

NSString *path = [[NSBundle mainBundle] pathForResource:@"scoreCards" ofType:@"dgs"];
if ([filemgr fileExistsAtPath:path ] == YES) {}

10-08 05:46