Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Eclipse project (Flex Builder) of which the actual files have changed location on the drive. When I start Eclipse I can see the project listed but there are no actual files listed. Right clicking the project and selecting properties will show me the old path where the files used to be stored but I can't change it.

How can I change the file location of an Eclipse project where it will look for the files after the project has been created?

share|improve this question
See the accepted answer for this question: stackoverflow.com/questions/3479466/… – Schmuli Oct 17 '12 at 11:50

2 Answers

up vote 38 down vote accepted

You can copy your .classpath and .project files to the root of the new project directory and then choose 'Import...' from the file menu, and select 'General/Existing Projects into Workspace.' In the resulting dialog, locate the root of the new project directory and finish.

share|improve this answer
3  
if you import your relocated project in the same workspace, you will have to delete the old project first, otherwise Eclipse won't let you proceed with the import. – Jean-Pierre Schnyder Mar 11 '12 at 13:37
2  
That is, delete the old project from the workspace (not from disk!) – Rose Perrone Mar 13 '12 at 14:04

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.