Reputation: 996
What command should I use to open a specified Folder
these two lines are did not working
start C:\xampp\htdocs\w\CodeIgniter_mysite\
%SystemRoot%\explorer.exe C:\xampp\htdocs\w\CodeIgniter_mysite\
Upvotes: 1
Views: 9272
Reputation: 117
Syntax
explorer.exe [/n][/e][,/root,][[,/select],]
The command below works fine in Windows 10 for me:
explorer.exe /root,C:\
or in your case:
explorer.exe /root,C:\xampp\htdocs\w\CodeIgniter_mysite\
Don't forget the comma after the /root tag.
See this for more information on explorer.exe
Upvotes: 1