替换文档目录中的文件

时间:2016-05-23 00:37:39

标签: ios objective-c nsdocumentdirectory

我有一种情况,我已经为我的应用程序的下一个版本更改了SQLite数据库,因为对SQLite数据库的更改我还对从中读取的一些代码进行了更改,主要是向查询方法。

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

如何确保在用户更新应用程序时,文件将被替换/更新?

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

//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"];

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

另外,我甚至不确定这是否是做我想做的最佳方法,如果你知道更好的方法请指教。

2 个答案:

答案 0 :(得分:2)

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

- (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];
}

希望这有帮助!

答案 1 :(得分:2)

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);
}