如何在 iPad 上查找文件?

发布于 2024-10-15 07:34:41 字数 107 浏览 3 评论 0原文

我应该使用应用程序在 iPad 模拟器上下载了一个文件。

如何检查该文件是否存在于 iPad 模拟器文件系统中?

是否有一些文件管理器可以用来检查文件是否存在及其内容?

I am supposed to have downloaded a file on the iPad simulator, using an appication.

How can I check that this file is present on the iPad simulator file system ?

Is there some file manager that I can use to check the existence of the file and possibly its contents?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你在看孤独的风景 2024-10-22 07:34:41

您可以在以下位置找到模拟器

/用户名/库/应用程序
支持/iPhone模拟器/4.2/

其中“4.2”是 SDK 版本。
在该文件夹下,您可以在神秘的子文件夹中找到所有应用程序。其中之一就是你的。
在那里您可以找到“文档”,这是您应用程序的个人文件夹。

You can find the simulator at

/Username/Library/Application
Support/iPhone Simulator/4.2/

where "4.2" is the SDK version.
Under that folder you find all applications in cryptical subfolders. One of them is yours.
In there you'lss find "Documents" which is your app's personal folder.

梦幻之岛 2024-10-22 07:34:41

使用这些方法,您可以验证文档目录中是否存在文件。我还没有测试过这个确切的例子,但它应该可以工作。

示例:

NSString *filePath = [self dataFilePathInDocuments:@"MyFile.txt"];
if([self fileExistsAtPath:filePath]) {
    NSLog(@"The file exits at %@", filePath);
} else {
    NSLog(@"The doesn't exist at %@", filePath);
}

代码:

- (NSString *)dataFilePathInDocuments:(NSString*)aFilename {
    NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docDirectory = [paths objectAtIndex:0];

    return [docDirectory stringByAppendingPathComponent:aFilename];
}

- (BOOL) fileExistsAtPath:(NSString*)aFilepath {
    NSFileManager *fm = [NSFileManager defaultManager];
    return [fm fileExistsAtPath:aFilepath];
}

Use these methods, you can verify a file is present in the documents directory. I've not tested this exact example but it should work.

Example:

NSString *filePath = [self dataFilePathInDocuments:@"MyFile.txt"];
if([self fileExistsAtPath:filePath]) {
    NSLog(@"The file exits at %@", filePath);
} else {
    NSLog(@"The doesn't exist at %@", filePath);
}

Code:

- (NSString *)dataFilePathInDocuments:(NSString*)aFilename {
    NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docDirectory = [paths objectAtIndex:0];

    return [docDirectory stringByAppendingPathComponent:aFilename];
}

- (BOOL) fileExistsAtPath:(NSString*)aFilepath {
    NSFileManager *fm = [NSFileManager defaultManager];
    return [fm fileExistsAtPath:aFilepath];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文