Eric_Tiger 当前离线
列兵
尘丶 当前离线
四级士官
@echo off&setlocal enabledelayedexpansion for /f "delims=" %%a in ('type 1.txt') do ( md e:\%%~na xcopy /e /y %%a e:\%%~na ) pause复制代码
TOP
DAIC 当前离线
中将
@echo off for /f "delims=" %%i in ('type "1.txt"') do ( if not exist "F:\testpaste\%%i\" ( md "F:\testpaste\%%i" ) xcopy /e /y "%%i" "F:\testpaste\%%i\" )复制代码
flyinnet9 当前离线
少尉
@echo off for /f "delims=" %%a in (1.txt) do xcopy /e /y "%%a" "f:\testpaste\%%a\"复制代码