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.
DOS bat 我想查找具有特定扩展名的文件,例如 /R c:\ *.ppx 并将它们全部移动到指定目录,例如 c:\PPS 谢谢!
将输出重定向WHERE到文件
WHERE
WHERE /R C:\ *.ppx > ppxlist.txt
然后使用FOR循环移动它们
FOR
FOR /f %i in (ppxlist.txt) do move %i c:\pps\
这是一个类似的问题,它提出了一些方法:
如何递归地将特定模式的文件复制到 Windows 上的单个平面文件夹中?