GETAPPLICATIONDIR

Concept Link IconSee also

Returns the folder in which the product executable files and dlls are located.

WebVue support - Yes.

Syntax

StrVal = GETAPPLICATIONDIR();

Return type: STR.

Execution

The folder in which the product executable files and dlls are located is returned as a string.

Example

Copy
SUB Main()
    'Declare variables
    DIM strPath as Str;

    strPath = GETAPPLICATIONDIR();
    PRINT("The Bin directory path is: ",strPath);
END SUB