Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open File explorer from command line in Command Prompt

Tags:

windows

cmd

Is it possible to open the Windows File Explorer from the command line on Windows?

There is something similar in OSX where open . opens the Finder window on the current folder path.

like image 367
dr_rk Avatar asked Dec 14 '22 00:12

dr_rk


1 Answers

Either start . or explorer . will open Explorer in the current folder.

From PowerShell it's Invoke-Item ., ii ., or also explorer ..

like image 145
Joey Avatar answered Dec 24 '22 10:12

Joey