Board logo

标题: [文件操作] [分享]批处理按照txt顺序依次命名mp4文件 [打印本页]

作者: Batcher    时间: 2023-6-12 22:07     标题: [分享]批处理按照txt顺序依次命名mp4文件

【问题描述】


以a.txt文件里面每一行重新命依次命名上面mp4文件
0到25按时间下载的
25最后下载哦
作者: Batcher    时间: 2023-6-12 22:07

【解决方案】

test-1.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. (for /f "delims=" %%i in ('dir /b /a-d /od *.mp4') do (
  5.     set /p str=
  6.     ren "%%i" "!str!.mp4"
  7. ))<"a.txt"
复制代码





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