目前我使用下面的脚本,但它没有按给定的顺序打开文件夹。它以随机顺序打开文件夹。
@echo off
start explorer "Folder 1 Path"
start explorer "Folder 2 Path"
start explorer "Folder 3 Path"
start explorer "Folder 4 Path"
目前我使用下面的脚本,但它没有按给定的顺序打开文件夹。它以随机顺序打开文件夹。
@echo off
start explorer "Folder 1 Path"
start explorer "Folder 2 Path"
start explorer "Folder 3 Path"
start explorer "Folder 4 Path"
您可以
timeout
在每个命令中间使用命令。timeout /t 2
如果您希望超时保持安静,请使用timeout /t 2 >nul
. 它应该工作。只需像这样编写代码:谢谢
按顺序使用
for
循环列表将是......将它串在一条线上。
这是 .bat 文件内容:
这是“dirs.txt”文件内容的示例:
编辑1:
usebackq用于处理带有空格的文件夹。