cmd - How To Rename The Extension of All The Files In A Directory Tree With Command Prompt -


i'm trying rename extensions of files in directory , tried using
ren *.[old]* *.[new] renamed files in current directory. know how rename extensions of folder , of sub-folders well?

for /r /d %i in (*.*) ren %i\*.old *.new

the /d select directories only, , /r recurse subdirectories.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - WPF+EF - The operation cannot be completed because the DbContext has been disposed -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -