Lower case all those hundread files in a folder – in one minute.
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()}
Advertisement
Categories: Uncategorized