怎样在bat中遍历所有的子目录

时间:2021-08-28 16:44:02
假定当前目录下有不少子目录。但是到每个目录下都执行相同的步骤。
比如现在有目录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]

#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]