Lower case all those hundread files in a folder – in one minute.
October 25, 2011
Leave a comment
Today, I was hit by an eclipse (Android) requirement, that all resource files should be in lower case. Powershell came to rescue.
Start the powershell, by typing powershell in command window.
change to resource directory
$files= dir
dir $files| Rename-Item -NewName {$_.Name.ToLower()}
Categories: Uncategorized