2

我有这段代码将 .txt 文件从主包复制到文档目录。这适用于模拟器,但无法在设备上运行。我通过删除文档目录中的 txt 文件并再次运行应用程序来验证它是否可以在模拟器上运行。当我在设备上运行应用程序时,copyItemAtPath 失败。这是我的代码。

     BOOL success;
     NSFileManager *fileManager = [NSFileManager defaultManager];
     NSError *error;
     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,  NSUserDomainMask, YES);
     NSString *documentsDirectory = [paths objectAtIndex:0];

     NSString *writableDBPath= [documentsDirectory  stringByAppendingPathComponent:@"zipFileName.txt"];
     success = [fileManager fileExistsAtPath:writableDBPath];
     if (success)
     {
        return;
     }

     // The writable database does not exist, so copy the default to the appropriate location.
     NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"zipFileName.txt"];
     success = [fileManager copyItemAtPath:defaultDBPath toPath:writableDBPath error:&error];
     if (!success) {
        NSAssert1(0, @"Failed to create writable database file with message '%@'.",   [error localizedDescription]);
     }

我尝试再次清洁和构建,我什至重新启动手机但没有任何效果。

错误:2012-05-08 16:13:19.487 balita[162:707] * -[ViewController currentJsonFile] 中的断言失败,/Users/diffy/Documents/balita/balita/ViewController.m:144 2012-05-08 16 :13:19.496 巴利塔[162:707]由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“无法创建带有消息的可写数据库文件”操作无法完成。(可可错误 260。)'。' * * 首先抛出调用堆栈:

4

1 回答 1

1

Foundation/FoundationErrors.h给你NSFileReadNoSuchFileError = 260, // Read error (no such file)

这意味着在构建期间文件不再复制到应用程序包中。

模拟器包仍然具有该文件,因为在构建期间将新文件复制到那里,但即使在您执行目标清理时也不会删除先前复制的文件。

要重现模拟器的问题,您可以从那里删除应用程序(长按或从模拟器目录中删除应用程序文件夹)并重新安装它。

要解决此问题,请将文件添加到Copy Bundle Resources目标阶段并检查文件是否已添加到项目中并且存在。

于 2012-05-08T09:05:05.433 回答