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# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -