Rename specific files recursively from command prompt (including sub directories)

In this example all *.html files in this directory and all sub directories will be renamed to *.htm

for /r %x in (*.html) do ren "%x" *.htm
Print Friendly, PDF & Email

More Like This


Categories


Software (Windows & Linux) Windows

Tags


  • Post a comment