1

我有一个带有下载选项的 iphone 应用程序,并且 iam 使用 nsdocument 目录路径进行下载。但下载后我如何才能访问 iphone 中的文档路径。我是否需要安装任何其他应用程序才能访问文件。如果是,请告诉我应用程序。谢谢。

4

3 回答 3

0

//NSDownloadsDirectory = 用于下载文件夹

//NSDocumentDirectory = 用于文档文件夹

    NSArray *pathArr = NSSearchPathForDirectoriesInDomains(NSDownloadsDirectory , NSUserDomainMask, YES);
    NSString *downloadsDir = [paths objectAtIndex:0];
Store the content to this path(you can create a folder in it too.). And also fetch the files stored in this folder, by enumerating to the files in this directory
于 2013-05-21T10:21:11.523 回答
0

如何显示 NSDocument 目录中的所有图像检查此链接,如果您想访问应用程序文件而不是检查此下载它
http://download.cnet.com/iExplorer/3000-2141_4-10969335.html

于 2013-05-21T10:39:26.693 回答
0

您可以使用iExplorerMac OS X 上的应用程序访问该文件夹。您也可以通过Xcode执行以下操作在您的测试设备上访问它:

Xcode > Window > Organizer > Devices

在窗口中,选择您要检查的应用程序,您可以看到目录:

在此处输入图像描述

您可以下载整个目录以访问其中的项目。

于 2013-12-04T14:53:20.130 回答