Dos script to rename files [Solved]
for /r %%x in (%1) do ren "%%x" %2 this will rename file recursively :-) save in a file give 2 arguments from extension and to extension. ex: file name is test.bat command : test *.avi *.bmp it renames all files with extension avi to bmp (in all subfolder...