Board logo

标题: [文件操作] 批处理如何添加指定的文件名后缀? [打印本页]

作者: johnzhou    时间: 2021-9-11 16:45     标题: 批处理如何添加指定的文件名后缀?

我有50个文件,名称分别为不规则的:
qerqwe.xls
dfdf2.xls
dfdfdf.xls
……

现在要去手动输入文字,如输入文字:工行,批量重命名结果为

qerqwe工行.xls
dfdf2工行.xls
dfdfdf工行.xls
……

如输入文字:农行,批量重命名结果为

qerqwe农行.xls
dfdf2农行.xls
dfdfdf农行.xls
……

哪位老大不吝赐教。
作者: toyerspollors    时间: 2021-9-11 16:59

  1.     @echo off
  2.     echo 请输入你要添加的后缀:
  3.     set /p file=
  4.     for /f "delims=" %%i in ('dir /b *.xls') do (
  5.     ren "%%i" "%%~ni%file%%%~xi"
  6.     )
复制代码

作者: johnzhou    时间: 2021-9-11 18:49

回复 2# toyerspollors


    可以用。厉害。太感谢了。
不过多嘴再问一句,如果改为前缀又该怎么处理,如输入文字:工行。里面重命名为:工行XXX.xls
作者: Batcher    时间: 2021-9-11 22:06

回复 3# johnzhou


2楼代码第7行改成:
ren "%%i" "%file%%%~nxi"




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2