batch rename file
REM # | EXAMPLE (changes the "ChangeMyName.txt" file's name to "NameChanged.csv")
rename "C:/Users/JacquesK/ChangeMyName.txt" "NameChanged.csv"
REM # | SYNTAX
REM # | rename "<file-to-change-the-name-of>" "<new-file-name>"
batch rename file
REM # | EXAMPLE (changes the "ChangeMyName.txt" file's name to "NameChanged.csv")
rename "C:/Users/JacquesK/ChangeMyName.txt" "NameChanged.csv"
REM # | SYNTAX
REM # | rename "<file-to-change-the-name-of>" "<new-file-name>"
batch rename files
REM # (1) Rename files (not folders) in the current folder only
REM # (2) Rename files (not folders) in the current folder and its subfolders
REM # | EXAMPLE (1)
REM # | ---------------------------------------------------------------
REM # | Replace ")" with "_" within the filenames in the current folder only
@echo off
setlocal EnableDelayedExpansion
set "pattern_to_replace=("
set "replace_text=_"
for %%N in ("*") do (
set "InitName=%%N"
call set NewName=%%InitName:!pattern_to_replace!=!replace_text!%%
if NOT !InitName!==!NewName! (
echo rename "!InitName!" "!NewName!"
rename "!InitName!" "!NewName!"
)
)
@echo on
REM # | EXAMPLE (2)
REM # | ---------------------------------------------------------------
REM # | Replace ")" with "_" within the filenames in the current folder and all its subfolders
@echo off
setlocal EnableDelayedExpansion
set "pattern_to_replace= "
set "replace_text=_"
for /R "%cd%" %%N in ("*") do (
set "InitName=%%~nN%%~xN"
call set NewName=%%InitName:!pattern_to_replace!=!replace_text!%%
if NOT %%N==%%~dN%%~pN!NewName! (
echo rename "%%~dN%%~pN!InitName!" "!NewName!"
rename "%%~dN%%~pN!InitName!" "!NewName!"
)
)
@echo on
REM # | ---------------------------------------------------------------
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us