Reputation: 21
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
Reputation: 193
Right click on Project > Properties > Resource > Linked Resources > Path Variables > WORKSPACE_LOC
Upvotes: 2
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
Reputation: 6842
On my workspace, I have, besides some projects directories, two Eclipse directories:
.metadata
.recommenders
Inside .metadata
I have:
If you're in Windows, use this tool to search for it. If you're on Linux, use this
Upvotes: 0
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
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