Batch script to change MD5 of all files in every folder -


i using change md5 of .rar-files.

for %%a in (*.rar) echo.>> %%a 

the problem is: *.bat has in folder .rar-files are, want put *.bat root.

root  |----folder1           |------*.rar  |----folder2           |------*.rar  |----folder3           |------*.rar 

how have change code changes md5 of every *.rar in every folder?

for /r root %%a in (*.rar) echo.>>"%%~fa" 

should job...

(but i'd remove >> first test echo filenames affected - test...)


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -