Skip to content

Instantly share code, notes, and snippets.

@EngKhaledB
Created February 21, 2021 10:13
Show Gist options
  • Save EngKhaledB/8304888f27a82376e3d93c89026281ab to your computer and use it in GitHub Desktop.
Save EngKhaledB/8304888f27a82376e3d93c89026281ab to your computer and use it in GitHub Desktop.
@echo off
Setlocal enabledelayedexpansion
Set "Pattern=Untitled"
Set "Replace=Page"
For %%# in ("D:\Folder Name\*.jpg") Do (
Set "File=%%~nx#"
Ren "%%#" "!File:%Pattern%=%Replace%!"
)
Pause&Exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment