How to go to specific folder in Eclipse?
eclipse
Solution
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.
Create an External tool
Go into the external tool configuration (you can find it into the corresponding toolbar icon) :
Then you can create your own external tool :
- Create a new Program (select Program in the tree)
- Name it shell
- Set the location to `${env_var:SystemRoot}\explorer.exe`
- Set the arguments to `/select,${resource_loc}`
- Run the external tool
Once created you can run the external tool from the context menu or from the toolbar ...
Problem
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?