Dongle
Dongle

Reputation: 622

Finding the Eclipse Project file location

I have an android project running in Eclipse IDE. Lets say it is 'ABC Project'. Some of my collieges have made number of copies of this project, so the project files can be seen in desktop, C://, D:// and even in eclipse work space. Now I don't know project in which location I am running because they have deleted and imported the project folder to eclipse using this copies and they can't remember whether they selected the option 'make a copy to the workspace'.. How can I get this location? I tried to right click on the project and see any option is there but no. Manually finding it using java code (getAbsolutePath()) will return no good, it will return the path in the phone.

Please help.

Upvotes: 8

Views: 27385

Answers (4)

Rancs
Rancs

Reputation: 165

Properties -> Resource -> Linked Resources -> PROJECT_LOC

Upvotes: 2

Aditya Kamath
Aditya Kamath

Reputation: 2237

Did you try right click on project ->Properties->Resources ? You will be able to see the Project path there.

Upvotes: 12

Swapnil Gangrade
Swapnil Gangrade

Reputation: 464

Use Alt+Enter on the project Name in Eclipse to see the complete path of the project directory where it resides.

enter image description here

Upvotes: 1

kathir
kathir

Reputation: 489

Right Click on project and click on Resources.

In that it shows the location where it is .

Find it out dude :)

Upvotes: 2

Related Questions