使用.bat打开文件资源管理器的文件夹

时间:2013-11-25 20:42:23

标签: batch-file

我应该使用什么命令在程序结束时打开指定的路径。

start "c:\Yaya\yoyo\"

不工作

5 个答案:

答案 0 :(得分:64)

您可以尝试这样:

%SystemRoot%\explorer.exe "c:\Yaya\yoyo\"

答案 1 :(得分:15)

我认为应该是这样的:

explorer c:/Yaya/yoyo

答案 2 :(得分:9)

开始命令在开头需要blank quotes,因为它使用第一个双引号短语作为"Window title"

start "" "c:\Yaya\yoyo\"

答案 3 :(得分:2)

打开记事本并输入

START C:\Yaya\yoyo\

另存为:filename.BAT

答案 4 :(得分:0)

这里有两个打开文件夹的示例,一个在该位置,另一个在父目录中选择了文件夹。

:: Open an Explorer window with the 'temp' folder displayed and its parent hidden:
Explorer.exe /e,/root,"%temp%"

:: This one will open the parent directory and automatically select the 'temp' folder:
Explorer.exe /select,"%temp%"

:: See more examples here: https://ss64.com/nt/explorer.html

在此处查看更多示例:https://ss64.com/nt/explorer.html