bat遍历文件夹...

@echo off 
set work_path=./res
cd %work_path% 
for /R %%s in (.,*) do ( 
echo %%s 
)