Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blaues0cke/ec7f87cc0d53e50da626 to your computer and use it in GitHub Desktop.
Save blaues0cke/ec7f87cc0d53e50da626 to your computer and use it in GitHub Desktop.
Lowercase all files in a active windows explorer window using autohotkey
#m::
WinGetActiveTitle, windowTitle
IfExist, %windowTitle%
{
Loop, %windowTitle%\*, , 1
{
currentName = %A_LoopFileName%
StringLower, lowerPath, currentName
finalPath = %A_LoopFileDir%\%lowerPath%
FileMove, %A_LoopFileFullPath%, %finalPath%
}
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment