Changing all files' extensions in a folder with one command on Windows

后端 未结 11 1829
南方客
南方客 2020-12-07 08:00

How can I use the Windows command line to change the extensions of thousands of files to *****.jpg?

11条回答
  •  遥遥无期
    2020-12-07 08:47

    Rename multiple file extensions:

    You want to change ringtone1.mp3, ringtone2.mp3 to ringtone1.wav, ringtone2.wav

    Here is how to do that: I am in d drive on command prompt (CMD) so I use:

    d:\>ren *.* *.wav 
    

    This is just an example of file extensions, you can use any type of file extension like WAV, MP3, JPG, GIF, bmp, PDF, DOC, DOCX, TXT this depends on what your operating system.

    And, since you have thousands of files, make sure to wait until the cursor starts blinking again indicating that it's done working.

提交回复
热议问题