home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 3
/
goldfish_volume_3.bin
/
files
/
dev
/
basic
/
ace
/
include
/
fexists.h
< prev
next >
Wrap
Text File
|
1994-10-22
|
335b
|
20 lines
{ FEXISTS(x$) -- returns true if file exists otherwise false.
Author: David J Benn
Date: 28th February 1993,
2nd January 1994 }
sub fexists(x$)
if x$="" then
fexists=0
else
open "I",#255,x$
if handle(255) <> 0& then
close #255
fexists=-1
else
fexists=0
end if
end if
end sub