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

6 lines
78 B
Batchfile
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
IF EXIST %filename% (
del %filename%
) ELSE (
echo %filename% not found
)