RosettaCodeData/Task/Conditional-structures/Batch-File/conditional-structures-2.bat
2023-07-01 13:44:08 -04:00

5 lines
78 B
Batchfile

IF EXIST %filename% (
del %filename%
) ELSE (
echo %filename% not found
)