RosettaCodeData/Task/Check-that-file-exists/BASIC/check-that-file-exists-2.basic
2023-07-01 13:44:08 -04:00

14 lines
191 B
Text

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