Files.FileExists

Top  Previous  Next

 

Syntax

function Files.FileExists(FileName: string): boolean

 

Alternative Names

ibec_FileExists

 

Description

Checks to see if the file identified by FileName exists and returns TRUE if it does, FALSE otherwise.

 

See also

Files.DirExists

 

Example

execute udsblock 

as

begin

  resultbool = Files.FileExists('c:\pagefile.sys'); 

end