查找多个扩展批处理的文件

时间:2013-05-29 12:54:03

标签: batch-file dir

我正在尝试在特定目录下搜索多个文件。 我知道如果我想在.exe下搜索所有C:\Test个文件,我会执行以下操作:

set FoundFiles=dir /b /s C:\Test\*.exe

但是,我希望在.exe下搜索所有.txtC:\Test个文件?有可能以同样的方式吗? 我尝试了以下方法:

dir /b /s C:\Test\*.exe *.txt

它在cmd中工作,但是,当我这样做时:

set FoundFiles=dir /b /s C:\Test\*.exe *.txt

它不起作用。

甚至可能吗?

1 个答案:

答案 0 :(得分:8)

这应该有效

dir / b / s * .exe / s * .txt