最佳答案
如何检查文件是否存在于 URL (而不是路径) ,以便在 iPhone 模拟器中设置预填充的默认存储:
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Food.sqlite"];
/*
Set up the store.
For the sake of illustration, provide a pre-populated default store.
*/
NSFileManager *fileManager = [NSFileManager defaultManager];
// If the expected store doesn't exist, copy the default store.
if (![fileManager fileExistsAtPath:storePath]) {
NSString *defaultStorePath = [[NSBundle mainBundle] pathForResource:@"Food" ofType:@"sqlite"];
if (defaultStorePath) {
[fileManager copyItemAtPath:defaultStorePath toPath:storePath error:NULL];
}
}
我了解到在模板的最新版本中,applicationDocumentsDirectory 方法返回一个 URL,因此我修改了代码,使用 NSURL 对象来表示文件路径。但是在 [fileManager fileExistsAtPath:storePath]
,我需要将 fileExistsAtPath
改为类似于 fileExistsAtURL
的东西(显然它不存在)。
我检查了 NSFileManager 类引用,没有发现任何适合我的任务。
有什么提示吗?