How to get a list of projects if you accidentally delete metadata

If the .metadata directory .metadata deleted, is there a way to restore the list of Eclipse projects?

+6
java eclipse
Feb 26 '11 at 7:22
source share
3 answers

After re-creating the workspace, you can re-add projects to the workspace by following these steps:

  • Choose File :: Import :: Other :: General :: Existing Projects into Workspace
  • Browse for the root directory (if the projects have a common parent, for example a workspace directory, select this)
  • Check all the projects you want to re-import and click Finish
+13
Feb 26 '11 at 10:13
source share
— -

Now that you know where the projects are stored in the specified metadata , there is no way to restore this list.
You need to re-import these projects into the workspace.

The name of this project comes from the corresponding .project file.

+1
Feb 26 '11 at 9:33
source share

You can try restarting the Eclipse IDE. This will help solve the problem in my case.

0
Nov 06 '17 at 18:43
source share



All Articles