wucnu 当前离线
列兵
@echo off&setlocal enabledelayedexpansion for /f %%a in ('dir /b /s /a') do ( set "temp=%%a" set "temp=!temp:-00001.TIF=!" md "!temp!" move "%%a" "!temp!" )复制代码
评分人数
apang 当前离线
上将
TOP
@echo off&setlocal enabledelayedexpansion for /f "delims=" %%a in ('dir /b /s /a') do ( set "temp=%%a" set "temp1=!temp:*-=!" call set temp=%%temp:-!temp1!=%% md "!temp!" move "%%a" "!temp!" )复制代码
@echo off&setlocal enabledelayedexpansion for /f "delims=" %%a in ('dir /b /s /a-d *.tif') do ( set "temp=%%a" set "temp1=!temp:*-=!" call set temp=%%temp:-!temp1!=%% md "!temp!" 2>nul move "%%a" "!temp!" >nul )复制代码
find 当前离线
少将
@echo off for /f "delims=" %%a in ('dir /b /s /a-d *.tif') do ( for /f "delims=-" %%b in ("%%a") do ( md "%%~nb" 2>nul move "%%a" "%%~nb\" >nul ) )复制代码