RosettaCodeData/Task/Conditional-structures/Batch-File/conditional-structures-2.bat
2015-02-20 00:35:01 -05:00

5 lines
78 B
Batchfile

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