How to quickly open the current directory from the command prompt? OS - Windows

user3366290 picture user3366290 · Oct 2, 2015 · Viewed 18.8k times · Source

There is a need to quickly open the current directory from the command prompt. I know that there is a command explorer.

But to enter the full path to the directory is very inconvenient. 

For example:

exoplorer c:\progra~1\nodejs~1\worskp~1\project\module\convert

It works. But is that the faster you can open the folder with the mouse ... I think it's not right.

And this command:

explorer cd.

Opens My Documents. Although I am in a different directory.

Whether prompt me please!

Answer

Grzegorz Adam Kowalski picture Grzegorz Adam Kowalski · Oct 2, 2015

You can try:

start .

or

explorer .

. is a shortcut for current directory.

In PowerShell command prompt:

ii .

ii is a shortcut for Invoke-Item.