BAT脚本搜索特定类型的文件并执行命令
我想搜索特定的文件类型(.plt),然后我想执行命令行命令(例如更改文件类型)。我在 Windows 7 中工作。
我可以编写 .bat 脚本来解决此问题吗?
请帮助我......请给我一些例子......
I want to search a particular file type(.plt) and then I want to execute a command line command(Eg. Change file type). I am working in windows 7.
Can I write a .bat script to do this issue?
Please help me.....please give me some example.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
作为对最高答案的更新,您现在应该对批处理文件中的 for 命令中的变量使用双百分号 (%%) (https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/for)。
As an update to the highest answer, you should use double percent signs (%%) for the varibles in a for command within a batch file now (https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/for).
for /r %i IN (*.plt) DO echo %i
将列出当前目录和子目录中的所有 .plt 文件,将 echo 替换为您选择的命令
for /r %i IN (*.plt) DO echo %i
will list all of the .plt files in the current directory and sub-directories, replace echo with the command of your choice
不确定你的意思。会是这样吗?
ren *.plt *.foo
如果一定要有一个批处理文件,我曾经写过一个脚本。
http://www.adarshr.com/papers/renamex
Not sure what you mean. Could this be it?
ren *.plt *.foo
If you must have a batch file, I once wrote a script.
http://www.adarshr.com/papers/renamex