Board logo

标题: [文件操作] [已解决]批处理更名文件夹下及子文件夹的图片文件名 [打印本页]

作者: luckcsz    时间: 2021-1-11 16:25     标题: [已解决]批处理更名文件夹下及子文件夹的图片文件名

批处理在父文件夹运行

一层子文件夹图片名字按电脑正序修改为0001、0002......等名字

二层子文件夹图片名字按电脑正序修改为0001、0002......等名字

三层子文件夹图片名字按电脑正序修改为0001、0002......等名字

图片格式有.jpg、.tif两种格式的,更名按顺序修改名称,

路过的老师看看帮忙写个谢谢·!
作者: Batcher    时间: 2021-1-12 11:31

回复 1# luckcsz
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. for /f "delims=" %%a in ('dir /b /s /ad') do (
  4.     pushd "%%a"
  5.     echo 正在处理子文件夹 %%a
  6.     set /a FileNum=10000
  7.     for /f "delims=" %%b in ('dir /b /s /a-d *.jpg *.tif') do (
  8.         set /a FileNum+=1
  9.         ren "%%b" "!FileNum:~1!%%~xb"
  10.     )
  11.     popd
  12. )
复制代码
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/6lbb97qUOs1sTyKJfN0ZEQ
作者: luckcsz    时间: 2021-1-12 11:52

谢谢,以完美实现~!




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