610176840 当前离线
列兵
Batcher 当前离线
管理员
@echo off setlocal enabledelayedexpansion cd /d "E:\PDF" for /f "delims=" %%i in ('dir /b /a-d *.pdf') do ( set "str=%%i" move "%%i" "E:\A\B\C\!str:~0,3!!str:~3,3!!str:~6!\D\" )复制代码
TOP