Leveraging the “ren” command line inside a loop makes it easy to rename all “.html” files to “.php” including files in sub directories in one run:
1 |
for /r %x in (*.html) do ren "%x" *.php |
Leveraging the “ren” command line inside a loop makes it easy to rename all “.html” files to “.php” including files in sub directories in one run:
1 |
for /r %x in (*.html) do ren "%x" *.php |