up vote 13 down vote favorite
4
share [g+] share [fb]

In eclipse, is there a way, to reveal the currently selected file in the filesystem. I currently need it to open in explorer, but it could also be in finder or nautilus.

Basically, I do not need the "Open with System Editor" option. I would like a right-click menu with the option: "Show file in explorer/finder/nautilus".

Thanks

link|improve this question

feedback

5 Answers

up vote 21 down vote accepted

Note: You can also develop your own external tool to open the file in a Windows explorer

alt text

Or you can use an eclipse plugin like StartExplorer.

alt text

link|improve this answer
4  
Great tip. On Mac OS X, replace the location with /usr/bin/open and the arguments should be just ${container_loc}. – zvikico Jul 22 '09 at 5:27
love your 'external tool' solution .. very tidy and no plugin! tip: and /e, before /select to open with folders panel – pstanton Jun 15 '11 at 0:51
feedback

Open the Properties of the file (Right Click->Properties) and the dialog will give you the full filesystem path.

link|improve this answer
1  
What is going on here? You are the only one who actually answered the question as asked, yet the other guy got the high score? – Matt J. Nov 2 '10 at 4:30
feedback

Have a look at the PluginBox: http://pluginbox.sourceforge.net/plugins.html. This works with Linux as well. You can configure it precisely or choose a schema for Gnome, KDE, ...

link|improve this answer
feedback

Adding "Show in Nautilus" using External Tools is pretty easy too, very similar to the process for Windows in VonC's answer. Simply create the following shell script, chmod +x it and add it to the PATH. Then use it in Eclipse's External Tools Configuration window, as shown in the screenshot below.

~/bin$ cat run-nautilus.sh 
#!/bin/bash
nautilus `dirname $1`

Set up the external tools configuration as shown here

link|improve this answer
feedback

Try the EasyShell extension: http://marketplace.eclipse.org/content/easyshell

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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