Last active
October 16, 2016 17:10
-
-
Save taylor-jones/037e46ca16b922cb9c78e8de75b34d36 to your computer and use it in GitHub Desktop.
bulk change filenames in folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM :: USING THE COMMAND PROMPT: | |
REM :: Snippet to change all the filenames in a directory (non-recusive) | |
REM :: The example below prepends all filenames with an underscore: | |
for %a in (*.*) do ren "%a" "_%a" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment