我正在学习 Objective-C,但在将文本文件传递给 NSFileManager 类时遇到问题。我在我的程序所在的同一目录中创建了新的空文件“testfile”,但是 NSFileManager 不知何故找不到这个文件。我不知道问题是什么:
NSString *fileName = @"testfile";
NSFileManager *fileMgr;
NSDictionary *attrib;
fileMgr = [NSFileManager defaultManager];
NSLog(@"%@",[fileMgr currentDirectoryPath]);
// verifying the test file exists
if([fileMgr fileExistsAtPath: fileName] == NO) {
NSLog(@"File doesn't exist");
return 1;
}
这是我的程序的附加屏幕截图