popxxterry 当前离线
列兵
77七 当前离线
中校
@echo off rem 批处理保存为ansi编码格式 for /d %%d in (*) do ( md "%%d\商品图" for /f "tokens=1-3 delims=_." %%a in ('dir /b /a-d "%%d\*.jpg"') do ( if not exist "%%d\商品图\Z-(%%b).%%c" ( copy "%%d\%%a_%%b.%%c" "%%d\商品图\Z-(%%b).%%c" ) ) ) pause复制代码
TOP