DefFnisthere(a$)
rem returns TRUE if the file a$ exists, otherwise returns FALSE
local a%,b%
a%=FileGetFileType(a$)
if a%>0 then
b%=TRUE
ELSE
b%=FALSE
ENDIF
=b%




