如何从iPhone应用程序查看应用程序目录

时间:2012-09-05 13:46:23

标签: iphone xcode

我试着找出如何从我的iphone应用程序中查看app目录。有没有办法在xcode中查看我的应用程序的文件夹结构?

感谢任何提示。

4 个答案:

答案 0 :(得分:2)

你可以看到一个包(.app):

  1. Ctrl +单击Xco​​de中Project Navigator中的.app。
  2. 选择“在Finder中显示”
  3. Ctrl +单击Finder中的.app文件
  4. 选择“显示包装内容”

答案 1 :(得分:1)

您必须在模拟器中运行它,然后检查文件夹:

~/Library/Application Support/iPhone Simulator/

您使用的每个iOS版本都会有一个子文件夹。进入你正在使用的当前iOS版本的文件夹,将会有一个名为Applications的子文件夹,在其中会有很多带有奇怪名称的子文件夹。逐个检查它们,直到找到包含您的应用程序的那个:)

答案 2 :(得分:1)

试着回答。如何记录它,像这样:

    //App Directory & Directory Contents
   NSString *appFolderPath = [[NSBundle mainBundle] resourcePath];
   NSFileManager *fileManager = [NSFileManager defaultManager];  
   NSLog(@"App Directory is: %@", appFolderPath);
   NSLog(@"Directory Contents:\n%@", [fileManager directoryContentsAtPath: appFolderPath]);

Xcode内部:

  • 窗口>组织者>项目
  • 选择项目
  • “派生数据”有一个小箭头,它将显示Finder中的位置

enter image description here

答案 3 :(得分:0)

您必须先存档项目:

Select the device instead of the simulator (you don't have to plug a device in first).
Go to: Product -> Archive.
Open your Organizer (right upper corner).
Go to the Archive and right-click on your archived project, click on "Show in Finder".

在您选择项目时,在管理器中,xcode会告诉您应用程序在appstore上有多大。实际尺寸,如果显示的一半大。