【发布时间】:2011-03-29 23:36:14
【问题描述】:
我在应用商店中有一个应用,刚收到用户的消息,告诉我升级到更新版本的应用后,他们保存的数据全部消失了。
是否有明显错误的方式在 iPhone 上保存数据,从而在将应用升级到新版本时导致数据丢失?
这是我用来加载和保存的代码,它在开发机器上运行良好。这是错误的做法吗?
- (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;
}
【问题讨论】: