Question

I would like to explore the folder in the Windows Explorer from the shell. I know a lot of people have been asking to Cmd here from a folder.

I'd like to do just the opposite and open a new window located at the current directory being browsed.

Was it helpful?

Solution

To open Windows Explorer at the current folder, just enter:

explorer .

OTHER TIPS

Type start . - it will open Windows Explorer at the current location.

The start command acts like a double click, so use it to open files too:

start index.html

If you type cmd into to Location Bar, Windows will open up a command line within the folder you are browsing.

If you're coming from Mac OS X or Linux background, you can also create an alias in your .bash_profile to use the open command as you would do on other *nix environments.

Just add the following line to your ~/.bash_profile:

alias open="explorer ."

Then:

~/.bash_profile

Then you can use the open command to open the current folder.

Windows: explorer .

Mac: open .

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top