meta data for this page
  •  

ibec_RemoveDirectory

The ibec_RemoveDirectory function can be used to delete directory specified by parameter.

Description

No additional description…

Syntax

  function ibec_RemoveDirectory(DirName : string);
  

Example

execute IBEBlock
returns (cout varchar(100))
as
begin
   if (ibec_RemoveDirectory('C:\Temp\folder')) then
      cout = 'Specified directory is removed!';
    else
      cout = 'Specified directory is NOT removed!';
  suspend;
end