Changing all files’ extensions in a folder with one command on Windows
You can use ren (as in rename): And of course, switch XXX and YYY for the appropriate extensions. It will change from XXX to YYY. If you want to change all extensions, just use the wildcard again: One way to make this work recursively is with the FOR command. It can be used with the /R option to recursively apply a command to matching files. For … Read more