比如现在有目录test
test之下有各个目录:
1
2
3
4
5
...
1000
每个目录下都有一个display.bat需要执行。
现在如何在test目录下编写一个bat,遍历所有的子目录,分别到每个子目录下执行display.bat。
4 个解决方案
#1
使用TREE命令不能满足你的需求吗?
#2
怎么用tree命令。麻烦你写一下好吗?
#3
要想看子目录树的话, tree 可以了, tree 你想查看的目录名字, (as: tree test)。
#4
[code=BatchFile]cd test
for /d %d in (*) do start /wait %d\display.bat[/code]
for /d %d in (*) do start /wait %d\display.bat[/code]
#1
使用TREE命令不能满足你的需求吗?
#2
怎么用tree命令。麻烦你写一下好吗?
#3
要想看子目录树的话, tree 可以了, tree 你想查看的目录名字, (as: tree test)。
#4
[code=BatchFile]cd test
for /d %d in (*) do start /wait %d\display.bat[/code]
for /d %d in (*) do start /wait %d\display.bat[/code]