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 文件,该文件将对具有特定扩展名的所有文件执行单个命令。
我在寻找这样的东西,它有 linux for windows 批处理文件
命令 *.extension
甚至可以使用扩展名遍历文件的方法。
如果您的命令更改文件名并使用相同的扩展名,则此解决方案存在错误,并且某些文件被多次处理。有办法解决这个问题。
@echo off for %%a in (*.ext) do ( echo "%%a" )