Qarclub 当前离线
列兵
评分人数
pcl_test 当前离线
荣誉版主
powershell -c "dir *.txt|%%{$_.Name;[IO.File]::ReadAllText($_, [Text.Encoding]::Default);''}|out-file '合并.log' -encoding Default" pause复制代码
TOP
w609053988 当前离线
@echo off for /f %%i in ('dir /a /b *.txt') do ( echo %%i>.\temp\%%i type "%%i">>.\temp\%%i ) del /q *.txt pause复制代码
GNU 当前离线
上尉
@echo off for /f "usebackq" %%i in (`dir /a /b *.txt`) do ( echo %%i>.\temp\%%i type "%%i">>.\temp\%%i ) del /q *.txt pause 复制代码