将不同的文件重命名为一个文件名,一次一个

发布于 2024-09-17 20:54:43 字数 325 浏览 7 评论 0原文

我的文件名为..

82011.nsf
63113.nsf
55555.nsf

我必须将每个文件重命名为 single.nsf(例如 ren 82011.nsf 到 single.nsf),

然后使用程序对该文件进行操作(single.nsf),

然后重命名下一个文件(63113.nsf 到 single.nsf) 然后使用程序对该文件进行操作(single.nsf) 等等

我想要一个批处理文件来执行nename,暂停(这样我可以运行其他程序),然后进行下一个重命名,直到所有nsf文件完成。

如何?

i have files named..

82011.nsf
63113.nsf
55555.nsf

i must rename each file to
single.nsf (for example ren 82011.nsf to single.nsf)

then use a program to act on that file (single.nsf)

then rename the next file (63113.nsf to single.nsf)
then use a program to act on that file (single.nsf)
etc

I want a batch file to do the nename, pause (so i can run the other program), then do the next rename until all nsf files are done.

how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

傾城如夢未必闌珊 2024-09-24 20:54:43
for %i in (*.nsf) do ( 
  rename %i single.nsf 
  do_the_job 
  pause 
) 
for %i in (*.nsf) do ( 
  rename %i single.nsf 
  do_the_job 
  pause 
) 
甚是思念 2024-09-24 20:54:43

这应该有效:

for /f %%fname IN (‘dir /b *.nsf’) do call myprog %%a

[src]

This should work:

for /f %%fname IN (‘dir /b *.nsf’) do call myprog %%a

[src]

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