Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我附上了文件夹结构。我想找出从 Test 开始的所有 dll,例如 Test-A.dll 等Test-*.dll 。你怎么能使用 bat 文件来做到这一点。
你自己提到了这个模式。尝试
dir /s Test-*.dll
说
dir /b /s Test-*.dll
将返回完整的路径名。
尝试这个:
dir /s X:\Test-A\Test-*.dll