Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to tell what is the current eclipse workspace you are currently working on?

share|improve this question
1  
It knows :) , what exactly you want ? – Jigar Joshi Dec 2 '10 at 8:14
1  
"Eclipse Workspace" :) – Mohamed Saligh Dec 2 '10 at 8:19
@org.life.java - The name of (or path to) the current workspace. – Andreas_D Dec 2 '10 at 8:27
From a Java program (Eclipse RCP app), or just manually while working in Eclipse? – Jesper Dec 2 '10 at 10:17
1  
@Jigar a reason to know where the WS is: when copying configuration to another comp, or for configuration backup. – ring0 Oct 17 '11 at 7:08
show 1 more comment

16 Answers

up vote 19 down vote accepted

For me it work to choose File->Switch Workspace->Other... and it shows the name of current workspace.

share|improve this answer
3  
This should be the correct answer. – JGord Sep 12 '12 at 14:36
1  
The problem is, if you have several workspaces, you have to keep track of which where there before... – ivant Oct 6 '12 at 12:21

start eclipse with -showlocation

Here are two interesting posts about it:

top-10-tips-for-new-eclipse-users

eclipse-startup-options-showlocation

share|improve this answer
2  
+1 for -showlocation that can also be added to your eclipse.ini as mentioned in one of the links – Brad Oct 12 '12 at 9:54

There's an environment variable called osgi.instance.area. You can find it via "Help -> About Eclipse -> Installation Details -> Configuration" (for eclipse "Helios" 3.6)

Or, open the properties of any project, then select "Resource". You'll find a "Location" property which is structured like this:

<path-to-current-workspace>/<name-of-current-project>

Note - the "erased" procedure works in most cases but can not be used in general, because a project folder does not have to be located in the workspace folder. You can choose external locations during project creation. So if you never uncheck the "Use default location", the procedure is save. The first procedure is reliable.

share|improve this answer
1  
Since you can have resource outside of your workspace the path before the name of the project is not always your workspace path. – Kristoffer E Dec 2 '10 at 9:02
@Kristoffer - we can created "linked" projects? I know that this is possible for files and folders, but for projects too? I'll edit my answer. – Andreas_D Dec 2 '10 at 9:54

Go Window>Preferences. Then under General>Workspace there is a property: "Workspace name (shown in window title)" and put in some sort of identifying label.

You'll need to set this up for each workspace you have, but it's an easy way to know which workspace you're in at a glance.

share|improve this answer
This should be the right answer. Simple and effective – Nerrve Apr 4 at 12:37

File->Properties

Select a file in the workspace and then use the menu: "File->Properties". A dialog pops up and should show the 'location' of the file. Read the location from right to left so you go through the class, package, folder, project, then you should see the workspace.

share|improve this answer
11  
A file in an eclipse project does not have to live in the same directory as the workspace. – Ogre Psalm33 Jun 28 '11 at 21:02
That is true but the OP needed to know how to find candidates, even if they end up looking at multiple files. – Kelly S. French Feb 3 '12 at 21:41
File -> Properties does not exist for me, even with a file selected in the Navigator pane. – thoughtadvances Aug 6 '12 at 15:16
Right clicking the file should bring up the same 'Properties' menue. – Kelly S. French Aug 6 '12 at 15:25

Use the switch workspace from the file menu and you will know it

share|improve this answer
1  
You have to do File->Switch Workspace->Other..., and the current workspace should be highlighted. Otherwise it just shows you a list of workspaces that aren't the one you're in (process of elimination?). – Ogre Psalm33 Jun 28 '11 at 18:45

File -> Switch Workspace

share|improve this answer
  1. Go to File->Switch Workspace.
  2. You can see a list of workspaces excluding your current workspace.
  3. Now go to the physical location and see which one is missing in the list.

The missing one is your current workspace.

share|improve this answer

Summary:
(from most immediate to lesser (but more elegant), leaving out redundant ones)

  1. File > Switch
    File->Switch Workspace->Other... -> full answer
  2. Help > About
    Help -> About Eclipse -> Installation Details -> Configuration: osgi.instance.area ->full answer
  3. Title bar (start-up parameter)
    If you start eclipse with -showlocation -> full answer
  4. Title bar (naming workspaces)
    Give each workspace a name -> full answer
share|improve this answer

Check the path of any resource in the resource's properties. Then you'll know. OR: Go to Preferences > General > Workspace and add a Workspace name (shown in window title)

share|improve this answer
Since you can have projects and resources outside of your workspace directory it is not guaranteed to show you the workspace path if you check the resource properties. – Kristoffer E Dec 2 '10 at 9:00

If you want to switch wokspace, then File->Switch Workspace. Click "Other" and choose appropriate folder. Is that what you want? :)

share|improve this answer

-showlocation is great, but it only changes the text at the end of the title bar, so it's often not visible in the taskbar.

If you want to change the beginning of the title bar, which shows the current Perspective, you can use Window -> Save Perspective As... and the new title will be visible in the Taskbar.

share|improve this answer

I created an External Tool Launch Configuration containing the following (exported echo-workspace.launch file content):

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration
    type="org.eclipse.ui.externaltools.ProgramLaunchConfigurationType">
    <listAttribute key="org.eclipse.debug.ui.favoriteGroups">
        <listEntry value="org.eclipse.ui.externaltools.launchGroup" />
    </listAttribute>
    <stringAttribute key="org.eclipse.ui.externaltools.ATTR_LAUNCH_CONFIGURATION_BUILD_SCOPE" value="${none}" />
    <stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="c:\Windows\System32\cmd.exe" />
    <stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="/c echo &quot;${workspace_loc}&quot;" />
</launchConfiguration>

So that the workspace folder path is echoed in the console.

Feel free to copy this into a .launch file and import it into Eclipse: File > Import ... > Run/Debug > Launch Configurations

I'll figure out a Mac/UNIX version soon, as I was on Indigo/Win when I made this one.

share|improve this answer

You will often have to use multiple running Eclipse instances at a time. To switch between them, it's helpful to set a name for the workspace that is displayed in the title of the Eclipse window. To do this, open Window/Preferences. In the Preferences window navigate to General/Workspace and give every workspace an individual workspace name.

share|improve this answer

start eclipse with -data

example: c:\eclipse\eclipse.exe -data c:\workspaces\myWorkspace1

share|improve this answer

Simple Logic...

Just Click on File menu then Switch Work Place

Click on Other

Then the work space showing is the current workspace

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.