How to navigate to a specific folder in Eclipse?

From Eclipse, how to go to a specific folder? I mean in Windows, how to open the command line corresponding to a folder, or open a file explorer to open the corresponding folder?

+5
source share
5 answers

You need to create an external tool with a location ${env_var:SystemRoot}\explorer.exe(or cmd.exe) and arguments /select,${resource_loc}. Any selected file or directory can now be displayed in Windows Explorer.

Create an external tool

Go to the external configuration of the tool (you can find it in the corresponding icon on the toolbar):

enter image description here

Then you can create your own external tool:

External tool creation

  • Create a new program (select "Program in the tree")
  • Call it a shell
  • ${env_var:SystemRoot}\explorer.exe
  • /select,${resource_loc}

...

+6

Eclipse PathTools, .

Eclipse, :

  • cmd .
  • .

: http://pathtools.googlecode.com/svn/trunk/PathToolsUpdateSite/site.xml

" "

Path Tools Feature
enter image description here

: enter image description here
( OSX, Windows)

/Finder: enter image description here

+4

A great simple plugin for this: http://basti1302.github.com/startexplorer/

enter image description here

+1
source

Update 2019 (no plugins required):

Right-click the desired folder in Project Explorer, go to Show In, select Terminal or System Explorer. See the screenshot below:

Screenshot of menu

+1
source

Right-click the file (in the left pane) .. then use Win Goodies -> Open File in Explorer

0
source

All Articles