Skip to content

Instantly share code, notes, and snippets.

@zamabuvaraeu
Created January 7, 2024 16:29
Show Gist options
  • Save zamabuvaraeu/c64f154dcdef848b1193368212747e03 to your computer and use it in GitHub Desktop.
Save zamabuvaraeu/c64f154dcdef848b1193368212747e03 to your computer and use it in GitHub Desktop.
Удаление файла без пары
for %%I in ("*.dng") do (
call :RemoveSingleFile %%I
)
exit /b 0
:RemoveSingleFile
set FileNameOriginal=%1
set FileNameWithoutDng=%FileNameOriginal:~0,-4%
set FileNameJpeg=%FileNameWithoutDng%.jpg
if not exist %FileNameJpeg% del %FileNameOriginal%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment