标题: [文件操作] [分享]批处理把数字部分移动到文件名最前面 [打印本页]
作者: Batcher 时间: 2023-2-19 17:33 标题: [分享]批处理把数字部分移动到文件名最前面
【问题描述】
如何把数字部分移动到文件名最前面?
作者: Batcher 时间: 2023-2-19 17:34
【解决方案】
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA
test_1.bat- @echo off
- cd /d "%~dp0"
- for /f "tokens=1-3 delims=.-" %%i in ('dir /b /a-d *.mp4 ^| findstr "\-[0-9]"') do (
- ren "%%i-%%j.%%k" "%%j-%%i.%%k"
- if exist "%%i-%%j.en.srt" (
- ren "%%i-%%j.en.srt" "%%j-%%i.en.srt"
- )
- )
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |