Subdirectories within an iPhone application - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:29:39Zhttp://stackoverflow.com/feeds/question/418680http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/418680/subdirectories-within-an-iphone-application9Subdirectories within an iPhone applicationGerald Kaszuba2009-01-06T23:50:16Z2009-01-08T02:29:43Z
<p>Is there a way to have directories within an .app?</p>
<p>At the moment if I add a file into Xcode, regardless of what Group hierarchy it is in, the file always lands in a flat filesystem within my application bundle.</p>
<p>Just as an update, I discovered the command:</p>
<pre><code>/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp
</code></pre>
<p>which allows me to add files into the application without having to deal with Xcode. I used <code>pbxcp</code> because I have many different directories and Xcode makes it painful to do so.</p>
http://stackoverflow.com/questions/418680/subdirectories-within-an-iphone-application/418698#4186989Answer by Jason Coco for Subdirectories within an iPhone applicationJason Coco2009-01-06T23:59:54Z2009-01-06T23:59:54Z<p>Under the target for your application, you have to add a Copy Files phase. Then you can specify a sub-directory within the app bundle that you want the file copied to. There will be a bunch of default directories for specific things (like resources and frameworks and such), but you can choose any directory you want. When your application bundle is built, the files you specify will be copied to the location within your bundle.</p>
http://stackoverflow.com/questions/418680/subdirectories-within-an-iphone-application/423045#4230458Answer by smeger for Subdirectories within an iPhone applicationsmeger2009-01-08T02:29:43Z2009-01-08T02:29:43Z<p>If you just want to copy existing files into your application bundle's Resources folder (which on iPhone is just the inside of the .app bundle), do the following:</p>
<ul>
<li>Drag the folder you want copied into the Files and Folders listing of your xcode project.</li>
<li>From the sheet that pops up asking you if you want to add the files to a target, change the radio button to "Create folder references for any added folders'.</li>
</ul>
<p>The folder you dragged in and all of its contents will be copied verbatim during building.</p>