I am Charmie

メモとログ

2012-09-16から1日間の記事一覧

run a batch file recursively

run a batch file recursively: set nameDir=%CD% :: run the following code recursively for /r /d %%d in (*) do ( :: go to a next directory cd %%d :: run batch file call test.bat :: go back to nameDir cd nameDir ) %%d: each directory name nam…