If you are not interested in external programs to renames all files in a folder to lowercase, there is a simple command for you.
- Open Command Prompt (cmd.exe) in Windows
- Go to the directory and run the following command
Note: This is not a recursive function, it will rename files to lowercase only on the directory where you will run the command.
- Open Command Prompt (cmd.exe) in Windows
- Go to the directory and run the following command
for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")
Note: This is not a recursive function, it will rename files to lowercase only on the directory where you will run the command.
0 comments :
Post a Comment