如何隐藏文件夹中的特定文件。
我正在使用 SQLite 数据库制作 ipad 应用程序。
我希望能够从 iTunes 添加 .sqlite 文件以自由添加 db 文件并备份 user_data 。
所以,我必须将文件保存在 /Documents 文件夹中。
那么,我有一个问题。
我不想在 iTunes 中显示某些数据库文件。 - (例如用户备忘录数据库)
我该怎么办?
I'm making ipad App using SQLite Database.
I want to be able to add .sqlite files from iTunes to add db file freely and to back user_data up.
So, I have to save files on /Documents folder.
Then, I have a question.
I don't want to be able to display some database files in iTunes. - (ex. like user memo db )
What am I supposed to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想向用户显示数据,您可以使用以下文件夹并从用于存储的同一位置访问数据库
//访问 iOS 计算机的 ApplicationSupport 文件夹
//访问应用程序的 Library 文件夹(即Application/appID/Library)
用于将数据从一个文件夹移动到另一个文件夹,使用以下代码:
If you don't want to display data to user you can use following folders and access the database from the same location which you use for storing
//To access ApplicationSupport folder of your iOS machine
//To access Library folder of your application (i.e. Application/appID/Library)
for moving data from one folder to another use following code: