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!
You can try:
start .
or
explorer .
.
is a shortcut for current directory.
In PowerShell command prompt:
ii .
ii
is a shortcut for Invoke-Item
.