Friday, 21 March 2014

Rename files to lowercase for a Directory in Windows

Go to the directory and run the following command in Terminal:

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

No comments:

Post a Comment