GETPROJECTDIR
Returns the folder in which the project is located.
WebVue support - Yes.
Syntax
StrVal = GETPROJECTDIR();
Return type: STR.
Execution
The folder in which the project is located is returned as a string.
Example
SUB Main()
'Declare variables
DIM strPath as Str;
strPath = GETPROJECTDIR();
PRINT("The project path is: ",strPath);
END SUB