手机文件夹管理器:使用.bat使用文件资源管理器打开文件夹

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

start "c:\Yaya\yoyo\"

不工作

123

你可以这样尝试:

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

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

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

我认为应该是这样的:

explorer c:/Yaya/yoyo
5

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

:: 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: s://ss64/nt/explorer.html

查看更多示例:s://ss64/nt/explorer.html

本站系公益性非盈利分享网址,本文来自用户投稿,不代表边看边学立场,如若转载,请注明出处

(450)
辐射四武器代码大全:大全景平移视频(panning gif)
上一篇
Ios免越狱资源站:Ios越狱-这是怎么发生的(kernelios)
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(30条)