回复 6# 屡败屡战
不如直接把文件列表添加到批处理本身的尾部,不需要另外的列表文件 a.txt- @echo off
- for /f "delims=:" %%i in ('findstr /b /n ::Mark "%~f0"') do set "n=%%i"
- for /f "skip=%n% delims=" %%i in ('type "%~f0"') do set "_%%~nxi=1"
- (
- echo;文件名 文件绝对路径
- for /r %%i in (*) do if defined _%%~nxi echo;%%~nxi %%i
- )>Result.Log
- pause & goto :EOF
-
- ::Mark
- a.txt
- b.png
- c.jpg
复制代码
|