Sunday, November 20, 2016

windows - Batch rename all files in folder to uppercase

Is there a way to rename all files in a specific folder to uppercase?


I found this code but it renames files to lowercase, can it be modified to change to uppercase instead?


for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")

No comments:

Post a Comment