简体   繁体   English

如何在Cocoa的Application Support目录中复制数据库文件而不丢失数据?

[英]How to copy database file in Application Support directory in Cocoa without losing data?

I have tried this code but it creates BLANK database.sqlite file in document directory. 我尝试过这段代码,但它在文档目录中创建了BLANK database.sqlite文件。

- (void)createEditableCopyOfDatabaseIfNeeded
{
    // First, test for existence.
    BOOL success;
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:@"prediction.sqlite"];



    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:@"prediction.sqlite"];

    success = [fileManager copyItemAtPath:defaultDBPath toPath:writableDBPath error:&error];


    if (!success) {
        NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);

    }
}

How do I ensure that when I copy database file it does not create an empty database? 如何确保在复制数据库文件时不会创建空数据库?

Any help would be greatly appreciated. 任何帮助将不胜感激。

First your code were not attempts to create a database file. 首先,您的代码不是尝试创建数据库文件。

So... You just want to copy the database file “prediction.sqlite” from source bundle to UserDomain dir? 那么......您只想将数据库文件“prediction.sqlite”从源包复制到UserDomain目录? If this is your purpose,You should pay attention to the code: 如果这是你的目的,你应该注意代码:

  if (success) return;
// The writable database does not exist, so copy the default to the appropriate location.

The correct should be: 正确的应该是:

      if (!success) return;
// The writable database does not exist, so copy the default to the appropriate location.

The directories returned by NSSearchPathForDirectoriesInDomains are not guaranteed to exist; NSSearchPathForDirectoriesInDomains返回的目录不保证存在; you need to create them yourself, if necessary (see the documentation ). 如有必要,您需要自己创建它们(请参阅文档 )。 NSFileManager's createDirectoryAtPath:withIntermediateDirectories:attributes:error: can help with that.@Anomie NSFileManager的createDirectoryAtPath:withIntermediateDirectories:attributes:error:可以帮助解决这个问题。@ Anomie

try those code:(before you copy the "prediction.sqlite" file, you need add the file in to your project bundle.): 尝试这些代码:(在复制“prediction.sqlite”文件之前,需要将文件添加到项目包中。): 在此输入图像描述

- (void)createEditableCopyOfDatabaseIfNeeded
{
    // First, test for existence.
    BOOL success;
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:@"prediction.sqlite"];

    success = [fileManager fileExistsAtPath:writableDBPath];

    if (!success){
        // create the directories, because the directories returned by NSSearchPathForDirectoriesInDomains are not guaranteed to exist
        if (![fileManager createFileAtPath:writableDBPath contents:nil attributes:nil]) {
            return;
        }
    }

    // The writable database does not exist, so copy the default to the appropriate location.
    NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"prediction.sqlite"];

    // remove the same file, before you copy the file
    [fileManager removeItemAtPath:writableDBPath error:nil];

    success = [fileManager copyItemAtPath:defaultDBPath toPath:writableDBPath error:&error];

    if (!success) {
        NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);

    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM