Files.DirExists

Top  Previous  Next

 

Syntax

function Files.DirExists(FolderName: string): boolean

 

Alternative Names

ibec_DirectoryExists

 

Description

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

 

See also

Files.FileExists

 

Example

execute udsblock 

as

begin

  resultbool = Files.DirExists('c:\windows\'); 

end