Skip to content

Instantly share code, notes, and snippets.

@RoLYroLLs
Last active August 29, 2015 14:04
Show Gist options
  • Save RoLYroLLs/30fe8db593d6026124e2 to your computer and use it in GitHub Desktop.
Save RoLYroLLs/30fe8db593d6026124e2 to your computer and use it in GitHub Desktop.
A batch script to lowercase all files and directories within the contained directory
@echo off
setLocal EnableDelayedExpansion
for /F "tokens=*" %%I in ('dir /L /B /s') do (
set f=%%I
set f=!f:%%~dpI=!
ren "%%I" "!f!"
echo "%%I" "!f!"
)
echo "Done!"
setLocal DisableDelayedExpansion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment