Reputation: 25738
From Eclipse, how to go to the specific folder? I mean in windows, how to open a command line which corresponding to the folder or direct open the file explorer to open the corresponding folder?
Upvotes: 6
Views: 3325
Reputation: 11
2019 update (no plugins required):
Right click the desired folder in the Project Explorer, go to Show In, choose either Terminal or System Explorer. See below screenshot:
Upvotes: 1
Reputation: 18869
I have been using an Eclipse plugin called PathTools for sometime now, and am happy with it.
It adds a number of buttons to the Eclipse toolbar which allow you to :
Update site : http://pathtools.googlecode.com/svn/trunk/PathToolsUpdateSite/site.xml
I chose to install only the Path Tools Feature
Opening a terminal directly at the Folder Path :
(The above snapshot is that for OSX but works in Windows as well)
Opening a folder directly in Explorer/Finder :
Upvotes: 4
Reputation: 4683
Great simple plugin for this: http://basti1302.github.com/startexplorer/
Upvotes: 1
Reputation: 72636
You have to create an external tool with location ${env_var:SystemRoot}\explorer.exe
(or cmd.exe) and arguments /select,${resource_loc}
. Any selected file or directory can now be shown in the windows explorer.
Go into the external tool configuration (you can find it into the corresponding toolbar icon) :
Then you can create your own external tool :
${env_var:SystemRoot}\explorer.exe
/select,${resource_loc}
Once created you can run the external tool from the context menu or from the toolbar ...
Upvotes: 6
Reputation: 161
Right click the file (in left pane).. then use Win Goodies -> Open file in Explorer
Upvotes: 0