- Apr 13, 2019
- 226
- 5,578
- 614
Good call! Though it shouldn't be an issue as I search for "*-l.mp4"Be careful: There are videos from Lillian and they have "-li" in the title.
It should be fine, if you replace them with the enhanced versions later.
Script code for reference:
Code:
@echo off
setlocal
REM
set "currentDir=%~dp0"
cd /d "%currentDir%"
REM
for %%f in (*-l.mp4) do (
echo Deleting file: %%f
del "%%f"
)
echo
endlocal