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

It seems like all my projects (except one) disappeared from the view Project Explorer

I'm using Eclipse Java EE IDE for Web Developers.

Version: Helios Service Release 2

Build id: 20110218-0911

note: all the projects are available on filesystem

any ideas?

share|improve this question

5 Answers

This happened to me. I'm still not sure how, but the reason was that my workspace meta data had become corrupted, probably due to Eclipse being improperly shutdown. The solution, as explained here, is to:

Note, steps 2 & 3 are optional if Eclipse isn't crashing, but just not showing any projects.

  1. Close Eclipse.
  2. cd /home/user/workspace/.metadata/.plugins
  3. rm -rf org.eclipse.core.resources
  4. Start Eclipse
  5. Do File->Import
  6. General->Existing Projects into Workspace
  7. Click the "Select root directory" field and browse to each subfolder in your workspace folder, and import.

For me, this was very tedious, since I had several dozen projects in my workspace, but it's the only solution I found short of restoring my entire workspace from a backup.

share|improve this answer
As far as I can tell, .metalog is not a subdirectory in the workspace. Did you mean .metadata? Also, when I go to import it says "No projects are found to import" – shim Oct 23 '12 at 5:37
1  
@shim, You're correct, that's a typo. Updated. – Cerin Oct 23 '12 at 14:58
1  
This saved my life :-) Thanks a lot @Cerin ! – Vishnu Haridas Nov 1 '12 at 8:06
wow, thanks, hooo I like Eclipse so much :-) – user457015 Dec 7 '12 at 0:47
Thanks a lot!!!!! – Muhannad Apr 4 at 6:47

I had the same problem in Aptana, all of a sudden my projects were gone. Solved it by going to the drop-down menu in Project Explorer and going Top Level Elements -> Projects.

share|improve this answer

If any of the previous methods don't work for you then delete your old workspace, create a new workspace and put it by default. You can do this by launching Eclipse twice - the second time it asks you for the workspace ;). Then re-import all your projects there and say "problem, goodbye".

share|improve this answer
If you're restoring your project files from a backup from another system, it may be necessary to re-instate read permissions first, eg: sudo chmod a+rwx /Users/myname/workspace/* – Francis Apr 7 at 22:18
i didn't know about it... well I have never done that but thanks for share – danigonlinea Apr 12 at 14:20

if you use the "Task List" view of Eclipse, it will sometimes try to hide files or projects that it thinks are not associated with a given task (i.e. any file that was not opened while you had a certain task selected as the current task). If you want Eclipse to stop hiding files in that case, you can just delete all tasks.

Or you may also restart your eclipse and by just closing the project and then opening it again (from the right mouse click context menu) the files will be restored.

If that doesnt get your projects back then check the "filters option" (Click on right corner of Project Explorer tab and open context menu. Select Filters option from menu) and make sure that your projects type isnt checked.

share|improve this answer
I deleted all of my task in "task list" and restarted Eclipse...but still the same problem. There are no filters that could hide any of my projects. Thanks for the answer. – francescou Sep 12 '11 at 15:21
maybe try deleting your workspace/.metadata directory, and back up your projects for example, create a Zip file then use it to import your existing projects into the workspace. – Mona Cheikhna Sep 12 '11 at 15:41
Are they visible in the Navigator View? – nitind Oct 14 '11 at 6:59

Mona is correct - Make sure that you have the task list set to show ALL as the image shows. Click the arrow to the left of the project if you want to re-factor your filter. Reset your perspective if you do not see the task list.

ALSO: If you find that Mona's answer is correct and resolves your issue, please accept that answer. You have not accepted any answers to questions you have asked.

show all projects in eclipse

share|improve this answer
If this worked for you please accept as answer, thanks. You have not accepted any answers yet. – Android Addict Oct 28 '11 at 22:24

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.