批处理扫描文件夹包括子文件的png格式文件将路径写入文本

2024-12-30 15:00:03
推荐回答(1个)
回答1:

写到a.txt文件
@echo off
>a.txt ( for /r %%i in (*.png) do echo %%~pnxi )
pause