标签: batch-file build-automation
我附加了文件夹结构。我想找出从Test-A.dll等测试开始的所有dll 测试 - * .dll。你怎么能用bat文件来做。
答案 0 :(得分:2)
你自己提到了这种模式。尝试
dir /s Test-*.dll
说
dir /b /s Test-*.dll
将返回完整的路径名。
答案 1 :(得分:2)
试试这个:
dir /s X:\Test-A\Test-*.dll