Haro 当前离线
列兵
523066680 (消遣区)当前离线
版主
TOP
zuodx 当前离线
xczxczxcz (Tα酱油路过)当前离线
中尉
for ($i=1;$i -le 2000;$i++){ if ([System.Io.Directory]::Exists($i)) { Foreach($folder in ("FW","QLR","QT","DA")) { New-Item ".\$i\$folder" -type Directory -force } (Gci ".\$i")|?{$_ -match "FW_[1-4]\.(jpg|png|gif|tiff|bmp)"}|Move-Item -Dest ".\$i\FW\" -force } } pause复制代码
@echo off cd /d "%~dp0" for /l %%a in (1,1,2000) do ( if /i exist "%%a" ( for %%e in (FW,QLR,QT,DA) do md "%%a\%%e" for /l %%i in (1,1,4) do move /y "%%a\FW_%%i.*" "%%a\FW\" ) )复制代码