Hi,
I opened eclipse 3.3.2. Now i need to get the current eclispe installation path. Is
there any eclipse API to get the eclipse installation path? Please help in this regard.
Thanks in Advance..
Snehal
|
|
Hi, I opened eclipse 3.3.2. Now i need to get the current eclispe installation path. Is there any eclipse API to get the eclipse installation path? Please help in this regard. Thanks in Advance.. Snehal
|
|||
|
|
|
|
Since eclipse3.4 and the p2 mechanism, you coud use That interface includes ** But in eclipse3.3, just query the property value "
|
||
|
|
|
|
It is a bit questionable as to why you would need the installation path. Your code (a plugin) should not depend on anything in the installation directory. If you are thinking of writing to the installation directory. Don't! You won't be able to do that in a shared install and it's a very bad idea anyway. If you for example need to access a file inside your plugin you would simply use code like this:
To get the location of the users workspace
|
||
|
|