Created
February 21, 2021 10:13
-
-
Save EngKhaledB/8304888f27a82376e3d93c89026281ab to your computer and use it in GitHub Desktop.
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
@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