ChipChamp
ChipChamp

Reputation: 21

How to find the workspace location in eclipse?

I had changed the workspace path in eclipse(I do not remember the same). Recently i got my laptop re-imaged and had to install the eclipse. I am not able to get back the new workspace. i searched for the folder in the laptop. i do not find the project folder in the laptop. not sure how to get back the changed workspace.

Upvotes: 0

Views: 6445

Answers (5)

user3425746
user3425746

Reputation: 193

Right click on Project > Properties > Resource > Linked Resources > Path Variables > WORKSPACE_LOC

Eclipse Work space Details

Upvotes: 2

nitind
nitind

Reputation: 20033

However you're launching Eclipse now, modify the procedure to add the -showlocation parameter. The workspace location will be embedded in the title bar.

Upvotes: 1

gabriel119435
gabriel119435

Reputation: 6842

On my workspace, I have, besides some projects directories, two Eclipse directories:

.metadata
.recommenders

Inside .metadata I have:

enter image description here

If you're in Windows, use this tool to search for it. If you're on Linux, use this

Upvotes: 0

Ilmarinen123
Ilmarinen123

Reputation: 586

If I understand your question correctly, you are looking for the project folder and have no idea, where it might be? In this case you could try to search for .project files (using windows explorer) Should you find it, use File->Switch Workspace and select the folder two layers above the .project file. (e.g. C:/workspace if you found the file at C:/Workspace/myproject/.project)

Upvotes: 0

Little Santi
Little Santi

Reputation: 8823

Elipse usually stores some metadata in every workspace it works on. Go search for a .metadata folder in your harddisk. Its contents should look like this:

.plugins/
.bak_0.log
.bak_1.log
.bak_2.log
.lock
.log
version.ini

Upvotes: 0

Related Questions