iPhone保存数据在升级时被删除?

时间:2010-08-15 00:48:09

标签: iphone load save upgrade

我在应用程序商店中有一个应用程序,只是收到用户的消息,告诉我在升级到更新版本的应用程序时,他们保存的数据全部消失。

是否有一种明显错误的方法来保存iphone上的数据,这会在将应用升级到新版本时导致数据丢失?

这是我用来加载的代码。 save,在开发机器上工作正常。这是错误的做法吗?

- (bool) saveData:(NSData*) data toFile:(NSString*) filename
{
    NSError* error;

    NSFileManager *fileMgr = [[[NSFileManager alloc] init] autorelease];
    NSString *docsDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
    NSString* filePath = [docsDir stringByAppendingPathComponent:filename];
    NSString* validMarkerPath = [docsDir stringByAppendingPathComponent:[filename stringByAppendingString:@".val"]];
    NSString* backupPath = [docsDir stringByAppendingPathComponent:[filename stringByAppendingString:@".bak"]];

    // If the file exists and is marke valid, copy it over the backup.
    if([fileMgr fileExistsAtPath:filePath] && [fileMgr fileExistsAtPath:validMarkerPath])
    {
        if([fileMgr fileExistsAtPath:backupPath])
        {
            if(![fileMgr removeItemAtPath:backupPath error:&error])
            {
                NSLog(@"Error: SafeFileManager: Could not remove backup file %@: %@", backupPath, [error localizedDescription]);
            }
        }

        if(![fileMgr moveItemAtPath:filePath toPath:backupPath error:&error])
        {
            NSLog(@"Error: SafeFileManager: Could not move %@ to %@: %@", filePath, backupPath, [error localizedDescription]);
        }
    }

    // Remove the "valid" marker file, if present.
    if([fileMgr fileExistsAtPath:validMarkerPath])
    {
        if(![fileMgr removeItemAtPath:validMarkerPath error:&error])
        {
            NSLog(@"Error: SafeFileManager: Could not remove validation file %@: %@", validMarkerPath, [error localizedDescription]);
        }
    }

    // Save the new file.
    if(![data writeToFile:filePath options:NSAtomicWrite error:&error])
    {
        NSLog(@"Error: SafeFileManager: Could not save to %@: %@", filePath, [error localizedDescription]);
        return NO;
    }

    // If we succeeded, save the "valid" marker file.
    NSData* markerData = [NSData dataWithBytes:"0" length:1];
    if(![markerData writeToFile:validMarkerPath options:NSAtomicWrite error:&error])
    {
        NSLog(@"Error: SafeFileManager: Could not save validation file %@: %@", validMarkerPath, [error localizedDescription]);
        return NO;
    }
    return YES;
}

- (NSData*) loadDataFromFile:(NSString*) filename
{
    NSError* error;

    NSFileManager *fileMgr = [[[NSFileManager alloc] init] autorelease];
    NSString *docsDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
    NSString* filePath = [docsDir stringByAppendingPathComponent:filename];
    NSString* validMarkerPath = [docsDir stringByAppendingPathComponent:[filename stringByAppendingString:@".val"]];

    // If the file isn't valid, we'll try to load the backup.
    if(![fileMgr fileExistsAtPath:validMarkerPath])
    {
        filePath = [docsDir stringByAppendingPathComponent:[filename stringByAppendingString:@".bak"]];
    }

    NSData* data = nil;

    @try
    {
        data = [NSData dataWithContentsOfFile:filePath options:NSUncachedRead error:&error];
        if(nil == data)
        {
            NSLog(@"Error: SafeFileManager: Could not load from %@: %@", filePath, [error localizedDescription]);
        }
    }
    @catch (NSException * e)
    {
        NSLog(@"Error: SafeFileManager: Could not load from %@: %@", filePath, [e description]);
        data = nil;
    }

    return data;
}

1 个答案:

答案 0 :(得分:0)

要回答我自己的问题,这段代码确实有一个写入漏洞,其中删除了备份文件和标记文件,这会导致加载失败。

我现在选择了一种简单的,甚至更简单的方法来简单地保存文件,然后保存备份。在加载时,它会尝试主文件,如果发生任何错误,它会使用备份文件尝试相同的加载例程。