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

15 lines
191 B
Text
Raw Permalink Normal View History

2013-04-10 12:38:42 -07: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