Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my xcode project i have created a folder manually named "MyClasses" to place the newly added files/classes to this folder.

Now i have nearly 30 classes in this folder.

when i renamed this folder , all the files in this folder are gets Erased.

Now i need to rename the folder to "ViewControllerClasses".

But i lost 30 .h, .m, xib files. [lucky i have a copy & and zip file]

How to rename the folder with out corrupting the files.

enter image description here

enter image description here

Renamed it to myviewcontrollerclasswes

When i renamed

enter image description here enter image description here

share|improve this question
Do u want to rename the folder in xcode only or both in xcode & the place where it resides in your harddisk (shown by finder) – hp iOS Coder Apr 4 '12 at 7:17
i want to rename the the place where it resides in shown by finder – Ranga Apr 4 '12 at 7:21
@Ranga Did you close the X-code before renaming the folder? – Superman Apr 4 '12 at 8:41
Yes i did. After close my xcode then i renamed the folder's name – Ranga Apr 4 '12 at 8:50

2 Answers

up vote 9 down vote accepted

The "folders" what you see in XCode under your project file are not real folders in the file system, only virtual folders administered in the .xcodeproj file. You can organize your files in the project folder independently from their location in the file system. Some prefers to map the file system folder structure inside the project folder structure, some others store all source files in one big folder in the file system and organize them only in the project folders: it's rather a question of preference.

However if you rename/move physically the files in the file system, you will have to delete and re-add them to your project since XCode will not know where to find them. Pay attention not to delete them physically only remove them from XCode project, then re-add them and reorganize as you want.

One more thing to note: if you are using version control system you will have to inform also its client (svn or git most likely) that you have renamed/moved your files. If you want to keep file revision history it will be a good idea to issue the copy/move command explicitly to the version control otherwise it will treat your files as deleted from the old location and added as new in the new location.

share|improve this answer
Thank you for your valuable information – Ranga Apr 4 '12 at 9:50
2  
+1 for the hint about version control! Regarding delete and re-add of the group after physically renaming the folder in the file system: I'm not sure about other versions, but in Xcode 4.2 this is not necessary. You can select the group in Xcode, display the File Inspector (keyboard shortcut Option+Command+1), then in the File Inspector window click the small button below the "Path" combo box. This will pop up a file dialog where you can choose the folder that the group represents. – herzbube Jun 9 '12 at 17:43
Nice, I did not know about this. I was not completely exact in the answer above since it is also possible to create groups in project folder that maps directly a folder in the file system and their contents will be synchronized automatically. They have blue folder icon in XCode if I remember well. However they are mostly used for resources only. – MrTJ Jun 11 '12 at 6:56

You should just run a search and replace on the project file (if you are working with version control and with other developers you will have seen this file a lot without a doubt), it's the project.pbxproj file located inside the xxxxxxxx.xcodeproj file.

Just right click (Control + Click) on the file and select "Show Package Contents" to find the xcodeproj file.

This file holds all the information about your projects structure (groups, files etc), my project was called "SomethingIPhone" and then we decided to make it universal so I wanted to change it to simply "Something".

So I ran a search and replace.

But watch out, it looks like you're going to be okay doing this with your "MyClasses" folder but if that folder is the same as other files or folders you have in your filesystem for the project, you could shoot yourself in the foot doing this.

So be careful but it worked for me great.

Good luck, your question was form over a year ago, but I'm sure more people will end up here in the future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.