[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
本帖最后由 xczxczxcz 于 2018-11-12 10:22 编辑

Win7 及以上 powershell版。保存为 XXX.PS1
  1. for ($i=1;$i -le 2000;$i++){
  2. if ([System.Io.Directory]::Exists($i)) {
  3. Foreach($folder in ("FW","QLR","QT","DA")) {
  4. New-Item ".\$i\$folder" -type Directory -force
  5. }
  6. (Gci ".\$i")|?{$_ -match "FW_[1-4]\.(jpg|png|gif|tiff|bmp)"}|Move-Item -Dest ".\$i\FW\" -force
  7. }
  8. }
  9. pause
复制代码
=======右键,使用powershell 运行 XP需要安装 powershell,可用纯P。
一目了然。
纯P
  1. @echo off
  2. cd /d "%~dp0"
  3. for /l %%a in (1,1,2000) do (
  4. if /i exist "%%a" (
  5. for %%e in (FW,QLR,QT,DA) do md "%%a\%%e"
  6. for /l %%i in (1,1,4) do move /y "%%a\FW_%%i.*" "%%a\FW\"
  7. )
  8. )
  9. pause
复制代码
===============

TOP

本帖最后由 xczxczxcz 于 2018-11-12 09:20 编辑

Win7 及以上 powershell版。保存为 XXX.PS1
  1. for ($i=1;$i -le 2;$i++){
  2. if((test-path $i) -eq $true) {
  3. Foreach($folder in ("FW","QLR","QT","DA")) {
  4. New-Item ".\$i\$folder" -type Directory -force
  5. }
  6. (Gci ".\$i")|?{$_ -match "FW_[1-4]\.(jpg|png|gif|tiff|bmp)"}|Move-Item -Dest ".\$i\FW\" -force
  7. }
  8. }
  9. pause
复制代码
=======右键,使用powershell 运行
一目了然。

TOP

本帖最后由 hlzj88 于 2018-11-12 05:03 编辑
  1. @echo off
  2. for /l %%i in (1,1,2000) do (
  3.   cd %%i\
  4.   md FW&md QLR&md QT&md DA
  5.   move /y fw*.* FW\
  6.   cd ..
  7.   )
  8. pause
  9. exit
复制代码
把这个批处理放在2000个文件的同级运行。
目的,学习批处理

TOP

20元求助,怎么在已有的多个文件夹里面创建多个子文件夹

现在我有2000个母文件夹,母文件夹名字是从1开始按顺序到2000,
现在我要在每个母文件夹里面都要创建4个子文件夹,分别是:FW,QLR,QT,DA
然后每个母文件夹里面有四张照片要放进去FW这个子文件夹里面,照片名字都改号了是FW_1和FW_2,FW_3,FW_4
求助大佬应该怎么弄,万分感谢

TOP

求高手帮忙,

TOP

返回列表