好的,
所以我有一个需要更新的 Cydia 应用程序。我知道 Cydia 应用程序没有 Documents 文件夹,因此您必须创建一个。这是我之前在 iOS 4 中的制作方法(在 iOS 5 上不起作用):
mkdir("/var/mobile/Library/APPNAME", 0755);
mkdir("/var/mobile/Library/APPNAME/Documents", 0755);
NSString *foofile = @"/var/mobile/Library/APPNAME/Documents/database.db";
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:foofile];
if (fileExists == TRUE) {
NSLog(@"already exists");
} else {
NSLog(@"doesn't exists");
NSFileManager *fileManager = [[NSFileManager defaultManager]autorelease];
NSError *error;
NSString *documentDBFolderPath = @"/var/mobile/Library/APPNAME/Documents/database.db";
NSString *resourceDBFolderPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"database.db"];
[fileManager copyItemAtPath:resourceDBFolderPath toPath:documentDBFolderPath error:&error];
}
我还包含了将数据库文件复制到该文件夹的代码。这不起作用(即使我通过 SSH 手动创建文件夹)。
请帮忙!谢谢。