将文件添加到文档目录(或其他地方)?
我想用一个小的 sqlite3 DB 初始化我的应用程序。我尝试将它放在 Documents 目录中,但有时它会以零大小复制它,有时它根本不复制它。
我应该如何使用充满信息的数据库初始化我的应用程序?
谢谢
I want to initialize my app with a small sqlite3 DB. I tried to put it in the Documents directory, but sometimes it copies it with zero size and sometimes it doesnot copy it at at all.
How sholud I initialize my app with a DB full of info?
Thankyou
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何将其复制到您的申请中?
如果您将应用程序与应用程序包内的数据库(作为资源)一起发送,则应将其从资源中复制到文档文件夹(如果不存在)并在那里使用它:
How do you copy it with your application?
If you ship your application with DB inside app bundle (as a resource) you should copy it to the documents folder from resources if it is absent and work with it there:
谢谢弗拉基米尔,
这很有帮助。我做了一些更改,这是效果很好的最终结果:
Thank you Vladimir,
This was helpful. I made a few changes and here is the final result that works great: