[Windows] Script to rename files from Uppercase to Lowercase

If you need to change the filenames in windows explorer from uppercase to lowercase, do the following:

Go to the directory and run the following command:

for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")
 
and your job will be done, njoy! 

Comments

Popular posts from this blog

[SVN] Simple way to do code review

How to Choose a Technology Stack for Web Application Development

Setting ESLint on a React Typescript project