How to remove/delete all duplicate files in a folder with a batch file!

  Рет қаралды 658

Guido's How-Tos

Guido's How-Tos

Күн бұрын

Here's how you can use a batch file to quickly find and delete all duplicate files in a folder. This can quickly clean up a folder on your PC if you've accidently copied the same files to it twice, for example.
The script simply looks for all files that end in ' - Copy' or a bracketed number like ' (2)', and deletes all files that do. Make sure that this is what you need before you run the script, as it deletes the files and skips the recycle bin.
You can find the full code in the pinned comment below.
#batch #batchfile

Пікірлер: 1
@Guidoshowtos
@Guidoshowtos Жыл бұрын
Here's the full code, so you can copy and paste it to make your batch file: @echo off setlocal EnableDelayedExpansion REM This batch file removes duplicates but keeps the original files and itself. REM It identifies duplicates by " - Copy" or " (number)" in the file name. REM Identify and keep original files for %%F in (*.*) do ( set "file=%%F" set "filename=%%~nF" set "ext=%%~xF" REM Use findstr to exclude files that have " - Copy" or " (number)" in their name echo !filename!| findstr /R " - Copy" >nul || echo !filename!| findstr /R " ([0-9])" >nul if !errorlevel! neq 0 ( REM Mark this file as original set "original[!filename!!ext!]=1" ) ) REM Delete duplicates only for %%F in (*.*) do ( set "file=%%F" set "filename=%%~nF" set "ext=%%~xF" REM Reconstruct the original file name by removing " - Copy" or " (number)" set "cleanName=!filename: - Copy=!" for /L %%N in (1, 1, 100) do ( set "cleanName=!cleanName: (%%N)=!" ) REM If this file is not marked as original and it's not the batch file, delete it if defined original[!cleanName!!ext!] if "!file!" neq "!cleanName!!ext!" if "%%F" neq "%~nx0" ( echo Deleting duplicate: !file! del "!file!" ) else ( echo Keeping: !file! ) ) echo Done.
Batch Script to Delete Files in a Folder
12:38
Automate with Rakesh
Рет қаралды 25 М.
NEVER install these programs on your PC... EVER!!!
19:26
JayzTwoCents
Рет қаралды 4,5 МЛН
ССЫЛКА НА ИГРУ В КОММЕНТАХ #shorts
0:36
Паша Осадчий
Рет қаралды 8 МЛН
Хаги Ваги говорит разными голосами
0:22
Фани Хани
Рет қаралды 2,2 МЛН
The SIMPLEST Way to Organize Your Files and Folders
10:14
Lea David
Рет қаралды 262 М.
How To Use ChatGPT To Make An Automated Data Entry Form In Excel
10:12
AIC Certified Accountants
Рет қаралды 2,9 М.
How to use the Best FREE Premium PDF Editor
14:49
Teacher's Tech
Рет қаралды 44 М.
Find & Delete Duplicate Files on Any Windows PC for Free! 2023
14:48
Best lifetime Cloud Storage deals! Providers, plans, prices, pros & cons!
11:16