替换文档目录中的文件

Replace File in Documents Directory

我有这样一种情况,我已经为我的应用程序的下一个版本更改了 SQLite 数据库,因为对 SQLite 数据库的更改我也更改了一些从它读取的代码,主要是添加列到查询方法。

由于更改,下次用户更新应用程序时,他们必须拥有新的数据库才能工作。在我的应用程序的先前版本中,我有一个名为 File.sqlite 的数据库,当用户下载新鲜的应用程序时,该文件将保存到他们的文档文件夹中。现在我已经使用一个新文件构建了应用程序,但名称相同 File.sqlite,其中包含更多列等,但是当我更新应用程序(不是全新安装)时,新文件不会替换旧文件。

我如何确保当用户更新应用程序时文件将 replaced/updated?

截至目前,我了解到我可以使用以下方法获取文档目录中旧文件的路径:

//Reference the path to the documents directory.
NSString *documentDir =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
//Get the path of old file.
NSString *filePath = [documentDir stringByAppendingPathComponent:@"File.sqlite"];

新文件是否必须有不同的名称,而我只是在代码中引用新名称?这对我来说似乎很愚蠢,我必须能够复制旧版本并使用新版本吗?

此外,我什至不确定这是否是完成我正在尝试做的事情的最佳方法,如果您知道更好的方法,请告知。

您可以检查您的应用程序是全新安装还是来自 AppDelegate 的更新。但是,您似乎没有在 NSUserDefaults 中保存您的应用程序版本,这对您来说有点棘手。您将 File.sqlite 的新版本保存在 Resource 中并将其复制到文档目录中。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{
    NSString* curVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];
    NSString* lastVersion = [[NSUserDefaults standardUserDefaults] objectForKey:@"LastVersion"];

    if ( lastVersion == nil ) 
    {
        //App Installed for the first time. In your case it might be an update because you do not store lastVersion value.

        //Reference the path to the documents directory.
        NSString *documentDir =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
        //Get the path of old file.
        NSString *filePath = [documentDir stringByAppendingPathComponent:@"File.sqlite"];

       if([[NSFileManager defaultManager] fileExistsAtPath: filePath])
       {
          [fileManager removeItemAtPath:filePath error:&error] //Delete old file
       }
       //Copy New File.sqlite from Resource Bundle.
       NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"File" ofType:@"sqlite"];
       [fileManager copyItemAtPath:resourcePath toPath:filePath error:&error]; 
    } 
    else if (![lastVersion isEqual: curVersion]) 
    {
      // App is updated. For future Versions you can Update files from here! 
    } 

    [[NSUserDefaults standardUserDefaults] setObject:curVersion forKey:@"LastVersion"];
    [[NSUserDefaults standardUserDefaults] synchronize];
}

希望对您有所帮助!

NSArray *pathsToDocuments = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [pathsToDocuments objectAtIndex: 0];
NSString *dbPath = [documentsDirectory stringByAppendingPathComponent:@"File.sqlite"]; //File.sqlite old database

NSString *pathStr = [documentsDirectory stringByAppendingPathComponent:@"File1.sqlite"]; // New database file name
FMDatabase *database = [FMDatabase databaseWithPath:dbPath];
[database open];
FMDatabase *database1 = [FMDatabase databaseWithPath:pathStr];
[database1 open];

NSString *str = @"select * from table_name"; // old database fire query for use data value fetch

FMResultSet *res=[database executeQuery:str];

//   Your old database value updated to update new database.
while ([res next]) {
    NSString *query= // Write update query for update column value
    [database1 executeUpdate:query];
}
[database1 close];
[database close];

// remove old database file 
if ([[NSFileManager defaultManager] isReadableFileAtPath: dbPath])
{
    if ([[NSFileManager defaultManager] removeItemAtPath:dbPath error: NULL] != YES)
        NSAssert2(0, @"Fail to copy database from %@ in %@", dbPath, pathStr);
}