如何隐藏文件夹中的特定文件。

发布于 2024-12-19 22:16:48 字数 235 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帥小哥 2024-12-26 22:16:48

如果您不想向用户显示数据,您可以使用以下文件夹并从用于存储的同一位置访问数据库

//访问 iOS 计算机的 ApplicationSupport 文件夹

NSString *appSupportDir = [NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) lastObject];

//访问应用程序的 Library 文件夹(即Application/appID/Library)

NSString *libraryDir = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) lastObject];

用于将数据从一个文件夹移动到另一个文件夹,使用以下代码:

NSFileManager *mngr = [[NSFileManager alloc] init];

NSString *ExpectedFilePath=[[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"Filename.ext"];

//getting Document directory path
NSString *FilePresentAtPath=[[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"Filename.ext"];

 // If the database doesn't exist in our Document folder we copy it to Library (this will be executed only one time).
 if (![mngr fileExistsAtPath:ExpectedFilePath])
 {
     [mngr moveItemAtPath:FilePresentAtPath toPath:ExpectedFilePath error:NULL];
 }
[mngr release];

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

NSString *appSupportDir = [NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) lastObject];

//To access Library folder of your application (i.e. Application/appID/Library)

NSString *libraryDir = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) lastObject];

for moving data from one folder to another use following code:

NSFileManager *mngr = [[NSFileManager alloc] init];

NSString *ExpectedFilePath=[[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"Filename.ext"];

//getting Document directory path
NSString *FilePresentAtPath=[[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"Filename.ext"];

 // If the database doesn't exist in our Document folder we copy it to Library (this will be executed only one time).
 if (![mngr fileExistsAtPath:ExpectedFilePath])
 {
     [mngr moveItemAtPath:FilePresentAtPath toPath:ExpectedFilePath error:NULL];
 }
[mngr release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文