tags:

views:

56

answers:

1

Does anyone know where bookmarks are stored in the Eclipse IDE?

I had to delete a Java project from my workspace, then use the Import Existing project option to reset some configuration settings, and now my bookmarks are gone. I'm trying to understand how this affected my bookmarks, since everything on the file system except for the Eclipse .project and .classpath files should have remained unchanged.

+1  A: 

Generally they are located in

{workspace}/.metadata/.plugins/org.eclipse.core.resources/{project}/.markers

removing the project from the workspace would have removed the markers as well.

Don
mine was sotred in {workspace}/.metadata/.plugins/org.eclipse.core.resources/.projects/{project_name}/.markers, Eclipse 3.4.1
Taras