FileExists(FileName)
Returns TRUE if FileName exists or FALSE if not.
Parameters:
FileName | The filename that should be checked |
Remarks:
None.
Example:
Sub Plugin_Initialize
b=FileExists("C:\MSDOS.SYS")
If b=false then 'file does not exist, disable plug-in
Disable
else
'do something...
end if
End Sub