RosettaCodeData/Task/Check-that-file-exists/BASIC/check-that-file-exists-2.basic

15 lines
191 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
ON ERROR GOTO ohNo
d$ = "docs"
CHDIR d$
d$ = "\docs"
CHDIR d$
END
ohNo:
IF 76 = ERR THEN
PRINT d$; " not found"
ELSE
PRINT "Unknown error"
END IF
RESUME NEXT