Skip to content

Instantly share code, notes, and snippets.

@mashingan
Last active August 12, 2017 21:05
Show Gist options
  • Save mashingan/f536b93f848a302c694a06c8e403c3f3 to your computer and use it in GitHub Desktop.
Save mashingan/f536b93f848a302c694a06c8e403c3f3 to your computer and use it in GitHub Desktop.
Rename files with WSH script
// run it with
// > wscript rename.js
// in the folder where the script resides
//
// or double-click it
var script = WScript.CreateObject("WScript.Shell");
var fso = WScript.CreateObject("Scripting.FileSystemObject");
for (var i = 28; i < 100; i++) {
var file = fso.GetFile('pg' + i + '.png');
file.Name = 'pg0' + i + '.png';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment