Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get project list if delete .metadata accidentally

Tags:

java

eclipse

if .metadata directory is deleted, is there a way to recover the Eclipse project list?

like image 625
user496949 Avatar asked Feb 26 '11 07:02

user496949


2 Answers

After you have re-created your workspace, you can re-add projects to your workspace by following these steps:

  • Select File :: Import :: Other :: General :: Existing Projects into Workspace
  • Browse for the root directory (if the projects share a common parent, like the workspace directory, select that)
  • Check all the projects you want to re-import and click Finish
like image 174
Richard Szalay Avatar answered Sep 30 '22 19:09

Richard Szalay


Now that you know where the projects are stored within said metadata..., no there isn't a way to recover that list.
You need to re-import those projects in your workspace.

The name of those project comes from their respective .project file.

like image 20
VonC Avatar answered Sep 30 '22 20:09

VonC