Is there a way to rename all files in a specific folder to uppercase with batch file?
I found this code. But it renames files to lowercase. How to modify it to rename to uppercase instead?
for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")
Best Solution