本帖最后由 xczxczxcz 于 2018-11-12 10:22 编辑
Win7 及以上 powershell版。保存为 XXX.PS1- 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
复制代码 =======右键,使用powershell 运行 XP需要安装 powershell,可用纯P。
一目了然。
纯P- @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\"
- )
- )
- pause
复制代码 =============== |