Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

folder structure in xcode vs folder structure in finder

Tags:

xcode

ios

iphone

I have the following folder structure in xcode for a project.

file structure in xcode

file structure in finder

However, I have the above file structure in finder. Is there any way to reflect the file structure from xcode to finder ?

like image 453
newbie Avatar asked Sep 06 '13 15:09

newbie


2 Answers

I recently discovered a Command Line Tool that will do exactly what you need. You can find it here:

https://github.com/venmo/synx

To install the tool, you just need to open the terminal and run the following command (use sudo to run it as a superuser and get permission):

$ sudo gem install synx

Then, just like the instructions on the GitHub webpage above indicate, use the following command to re-organize your folder structure:

$ synx path/to/your/project.xcodeproj

This should do it :).

like image 161
Cornel Avatar answered Oct 22 '22 00:10

Cornel


You should managed it yourself in Finder, then set new Path for folders in Utility View
Xcode folder path

like image 25
ArtFeel Avatar answered Oct 21 '22 22:10

ArtFeel