RosettaCodeData/Task/Conditional-structures/Batch-File/conditional-structures-2.bat

6 lines
78 B
Batchfile
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
IF EXIST %filename% (
del %filename%
) ELSE (
echo %filename% not found
)