0

我附上了文件夹结构。我想找出从 Test 开始的所有 dll,例如 Test-A.dll 等在此处输入图像描述Test-*.dll 。你怎么能使用 bat 文件来做到这一点。

4

2 回答 2

2

你自己提到了这个模式。尝试

dir /s Test-*.dll

dir /b /s Test-*.dll

将返回完整的路径名。

于 2013-07-05T13:07:47.863 回答
2

尝试这个:

dir /s X:\Test-A\Test-*.dll
于 2013-07-05T13:16:39.650 回答