Board logo

标题: [文本处理] 批处理替换文件名请求 [打印本页]

作者: WilSon123    时间: 2018-9-19 10:46     标题: 批处理替换文件名请求

有个问题需要请教,文件名为:4450036992YSMZZW.jpg,想保留数字+后面英文变为-311,就是4450036992-311.jpg,该怎么写好,谢谢大家。
作者: zaqmlp    时间: 2018-9-19 14:33

  1. @echo off
  2. for /f "delims=" %%a in ('dir /a-d/b/l *.jpg^|findstr "^[0-9][0-9]*[a-z]"') do (
  3.     for /f "delims=abcdefghijklmnopqrstuvwxyz" %%b in ("%%a") do echo;ren "%%a" "%%b-311%%~xa"
  4. )
  5. pause
复制代码

作者: WilSon123    时间: 2018-9-19 14:58

谢谢楼上的分享,我想问下delims=abcdefghijklmnopqrstuvwxyz的指保留的意思吗?没有改到
作者: Batcher    时间: 2018-9-19 19:51

回复 3# WilSon123


    把第三行的 echo; 删掉试试
作者: WilSon123    时间: 2018-9-20 09:11

回复 4# Batcher
改成了4450036992ysmzzw.jpg-311.jpg
作者: Batcher    时间: 2018-9-20 10:13

  1. @echo off
  2. for /f "delims=" %%a in ('dir /a-d /b /l *.jpg') do (
  3.     for /f "delims=abcdefghijklmnopqrstuvwxyz" %%b in ("%%a") do (
  4.         ren "%%a" "%%b-311%%~xa"
  5.     )
  6. )
复制代码
我这边测试2楼方案没有问题

c:\Test>dir /b *.jpg
4450036992YSMZZW.jpg

c:\Test>test.bat

c:\Test>dir /b *.jpg
4450036992-311.jpg
作者: WilSon123    时间: 2018-9-20 10:45

回复 6# Batcher
问题解决了,多谢二楼和三楼的,另外如果有4450036992yszzw,4450036992zszzw,改为 4450036992-311,4450036992-312,这个改怎么写,是否需要判断
作者: Batcher    时间: 2018-9-20 11:02

回复 7# WilSon123
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. set n=311
  4. for /f "delims=" %%a in ('dir /a-d /b /l *.jpg') do (
  5.     for /f "delims=abcdefghijklmnopqrstuvwxyz" %%b in ("%%a") do (
  6.         ren "%%a" "%%b-!n!%%~xa"
  7.         set /a n+=1
  8.     )
  9. )
复制代码





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