Rename all files in folder to lower-case

Seems simple, but Windows considers source and destination as same filename and it’s not easy …

for /r %D in (.) do @for /f "eol=: delims=" %F in ('dir /l/b/a-d "%D"') do @ren "%D\%F" "%F"

November 18th, 2022 | Posted in CMD, Windows |

Comments are closed.