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.
一步一步需要的东西:
在 .bat 文件(命令行脚本)中是必需的,或者建议一个可以帮助我执行此操作的工具。
您可以像这样从另一个文件夹中的一个文件夹中检查文件和子文件夹名称(如果这就是“在另一个目录中搜索所有列出的文件”的意思):
for %%f in ("C:\folder1\*") do ( if exist "C:\folder2\%%~nxf" echo %%~nxf exists in C:\folder2 )
不过,我不清楚“使用 Windows Search 输出结果”是什么意思。