Changing all files' extensions in a folder wit

2019-01-29 18:01发布

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

标签: windows cmd jpeg
8条回答
Root(大扎)
2楼-- · 2019-01-29 18:46

For those of you guys who are not really good in programming you can check out this article on wiki how.
It shows many method of doing it that doesn't involve coding
and you can also check out this blogpost on changing file extensions.
It contains a console application that does all the stuffs for you.

查看更多
Juvenile、少年°
3楼-- · 2019-01-29 18:47

Rename behavior is sometimes 'less than intuitive'; for example...

ren *.THM *.jpg will rename your THM files to have an extension of .jpg. eg: GEDC003.THM will be GEDC003.jpg

ren *.THM *b.jpg will rename your THM files to *.THMb.jpg. eg: GEDC004.THM will become GEDC004.THMb.jpg

ren *.THM *.b.jpg will rename your THM files to *.b.jpg eg: GEDC005.THM will become GEDC005.b.jpg

查看更多
登录 后发表回答