bat批量提取文件名及文件内部特定字符串

2024-12-26 06:22:03
推荐回答(1个)
回答1:

@echo off
for /r %%i in (*.text) do (
>>result.txt echo %%~ni
for /f "tokens=1 delims=<>" %%j in ('type "%%~i"') do (
echo %%j|findstr /i /c:".png">nul&&echo %%j>>result.txt
))
pause