NAME=FileExists
AUTHOR=
ITEM=function FileExists(path$, file$)
DESCRIPTION=Function returns non-zero if the specified file exists in this folder or zero otherwise.
OUTSIDE CODE=dim info$(10, 10) '<-for FileExists()

function FileExists(path$, file$)
    files path$, file$, info$(
    FileExists = val(info$(0,0))
end function
