0% found this document useful (0 votes)
6 views1 page

Redact

The document contains two batch scripts for renaming files in the folder 'A:\Movie'. The first script removes the suffix '_redacted' from filenames, while the second script adds the suffix to all files. Both scripts provide feedback on the renaming process and pause at the end for user interaction.

Uploaded by

Pvinkal Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Redact

The document contains two batch scripts for renaming files in the folder 'A:\Movie'. The first script removes the suffix '_redacted' from filenames, while the second script adds the suffix to all files. Both scripts provide feedback on the renaming process and pause at the end for user interaction.

Uploaded by

Pvinkal Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

@echo off

setlocal enabledelayedexpansion

:: Define the folder path


set folder=A:\Movie

:: Define the suffix to remove


set suffix=_redacted

:: Loop through all files in the folder


for %%f in ("%folder%\*%suffix%.*") do (
set "filename=%%~nf"
set "extension=%%~xf"
set "newname=!filename:%suffix%=!!extension!"
ren "%%f" "!newname!"
echo Renamed: %%~nxf -> !newname!"
)

echo All files in "A:\Movie" with the suffix "_redacted" have been renamed.
pause

---------------------------------------

@echo off
setlocal enabledelayedexpansion

:: Define the folder path


set folder=A:\Movie

:: Define the suffix


set suffix=_redacted

:: Loop through all files in the folder


for %%f in ("%folder%\*.*") do (
set "filename=%%~nf"
set "extension=%%~xf"
set "newname=!filename!!suffix!!extension!"
ren "%%f" "!newname!"
echo Renamed: %%~nxf -> !newname!
)

echo All files in "A:\Movie" have been renamed with the suffix "_redacted".
pause

You might also like