home *** CD-ROM | disk | FTP | other *** search
- { FEXISTS(x$) -- returns true if file exists otherwise false.
-
- Author: David J Benn
- Date: 28th February 1993 }
-
- sub fexists(x$)
- if x$="" then
- fexists=0
- else
- open "I",#1,x$
- if handle(1) <> 0& then
- close #1
- fexists=-1
- else
- fexists=0
- end if
- end if
- end sub
-