Reputation: 6335
I am using Eclipse Helios 3.6.2
for android development. Today when I opened eclipse these is no projects visible in package explorer.
Even though projects folders are present in directory. What can be reason for it? Is it missing some config file. How to make all projects in workspace visible again in explorer of eclipse.
Thanks
Upvotes: 8
Views: 10625
Reputation: 182
For me, I had to do
I am guessing, since the Project was Maven, it had to be imported as its type.
Upvotes: 0
Reputation: 43
None of these helped, the correct method for me was:
file -> import ->general ->existing projects into workspace-> coose your directory with projects in "select root directory" ; click finish and you've it there!
Upvotes: 0
Reputation: 2069
Upvotes: 1
Reputation: 420990
I had the same issue with my Package Explorer view. Turns out the view looks different in debug perspective and normal perspective:
Upvotes: 1
Reputation: 11
Open Eclipse IDE
Click To File > Switch Workspace >Select Previous Workspace from List
Upvotes: 1
Reputation: 31
I experienced this error! Just go to File->import and browse to your workspace directory as root directory of existing project and click finish. This will load all your projects in the selected directory i,e: workspace in this case to the package explorer :)
Upvotes: 3
Reputation: 21507
Your project list is stored at:
`<workspace>\.metadata\.plugins\org.eclipse.core.resources\.projects\`
So you might want check that file to see if your projects are there. Sometimes selecting Top Level Elements -> Projects reveals additional projects that haven't been assigned a working set.
Upvotes: 7
Reputation: 4460
I hope you know the workspace path. When you open the eclipse first time It will ask path for workspace. If you know that go to that folder and check whether all the project that you have created are their if it's all their then just Import all the project. I think you change the workspace path that's why.
Upvotes: 1