Skip to content

Instantly share code, notes, and snippets.

@h3nr1ke
Last active February 5, 2018 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3nr1ke/df55366e1cb6e4503ed7197d236f84ae to your computer and use it in GitHub Desktop.
Save h3nr1ke/df55366e1cb6e4503ed7197d236f84ae to your computer and use it in GitHub Desktop.
Rename all files to a numeric sequence
:: initial count
SET i=0
setlocal EnableDelayedExpansion
:: filter for extension, jpg as example
for %%f in (*.jpg) do (
:: rename the current file to the new name
ren "%%~nf%%~xf" "!i!.jpg"
:: increase the counter
set /a i+=1
)
:: prevent closing
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment