In case of renaming multiple file extensions to another, they suggested to type this command in cmd promt or powershell: ren *.(current extension name) *.(new extension name)

But what about to renaming multiple file extensions to nil or no file extension? How to replace this command *.(new extension name) ?

  • @Brotherly
    link
    28 months ago

    I’m not a cmd prompt expert, but does

    ren *.(current extension name) *

    work?

    To test it, make a new directory and create 2 files there with the same extension. Then, run that code in that directory and check the result.