Files.GetRunDir

Top  Previous  Next

 

Syntax

function Files.GetRunDir(): string

 

Alternative Names

ibec_GetRunDir

 

Description

Returns the path of the current executable.

 

Example

execute udsblock 

as

begin

  /* get the path to the current executable */

  app_path = Files.GetRunDir();

  GUI.ShowMessage(app_path);

end