BAT脚本搜索特定类型的文件并执行命令

发布于 2024-12-19 00:21:00 字数 126 浏览 1 评论 0原文

我想搜索特定的文件类型(.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

捶死心动 2024-12-26 00:21:01

作为对最高答案的更新,您现在应该对批处理文件中的 for 命令中的变量使用双百分号 (%%) (https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/for)。

for %%i IN (*.txt) DO echo %%i

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 %%i IN (*.txt) DO echo %%i
半步萧音过轻尘 2024-12-26 00:21:00

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

甜扑 2024-12-26 00:21:00

不确定你的意思。会是这样吗?

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文