命令提字元的for迴圈從檔案列表處理資料



dir /B *.bmp > list.txt
for /F  %%t in (list.txt) do (
  DepthToYUV.exe %%t output.yuv
)
pause

留言