Change multiple file extensions using Command Prompt

You can change multiple file extensions using command line. I had 20 odd xlsx files which I want to change as csv files.

You can use this command:  ren *.xlsx *.csv

Step 1:

Change to directory you want to change the file extensions.

change_directory

Step 2:

Enter the following command: ren *.existing file extension *.new file extension you want

change_file_extension