Board logo

标题: [文件操作] [分享]批处理重命名文件删除特殊字符、字母、数字、空格 [打印本页]

作者: Batcher    时间: 2023-3-28 10:06     标题: [分享]批处理重命名文件删除特殊字符、字母、数字、空格

除去文件名里面的空格 特殊字符 数字和字母
例如:
删除】左侧全部内容
删除】右侧空格


作者: Batcher    时间: 2023-3-28 10:06

【解决方案】

test-1.bat

请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. for /f "tokens=1* delims=】" %%a in ('dir /b /a-d *.ppt') do (
  5.     set "NewName=%%b"
  6.     set "NewName=!NewName: =!"
  7.     ren "%%a】%%b" "!NewName!"
  8. )
复制代码

作者: Batcher    时间: 2023-3-28 10:08

test-2.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. for /f "delims=" %%a in ('dir /b /a-d *.ppt') do (
  5.     set "OldName=%%a"
  6.     set "NewName=!OldName:*】=!"
  7.     set "NewName=!NewName: =!"
  8.     ren "%%a" "!NewName!"
  9. )
复制代码





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