cmd open folder in explorer code example
Example 1: open current folder in explorer from cmd
The period is used in the Command Prompt as a shorthand for the current folder.
Enter start .
or
Enter Explorer .
Example 2: open directory windows command
Just use "open [path_to_dir]" in Unix or "start [path_to_dir]" in Windows as:
open . #Open current directdory in Unix
start . #Open current directory in Windows