gpt4 book ai didi

iphone - 将文件添加到文档目录(或其他地方)?

转载 作者:行者123 更新时间:2023-12-03 20:37:11 26 4
gpt4 key购买 nike

我想用一个小型 sqlite3 数据库初始化我的应用程序。我尝试将它放在 Documents 目录中,但有时它会以零大小复制它,有时它根本不复制它。

我应该如何使用充满信息的数据库初始化我的应用程序?

谢谢

最佳答案

如何将其复制到您的应用程序中?
如果您将应用程序与应用程序包内的数据库(作为资源)一起发布,则应将其从资源中复制到文档文件夹(如果不存在)并在那里使用它:

NSFileManager *fileManager = [[NSFileManager defaultManager] autorelease];
BOOL exists = [fileManager fileExistsAtPath:databasePath];

if (exists) {
return;
}

NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:databaseName];
[fileManager copyItemAtPath:databasePathFromApp toPath:databasePath error:nil];

关于iphone - 将文件添加到文档目录(或其他地方)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2138956/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com