Difference between revisions of "IncludesPath"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function IncludesPath: AnsiString; </source> ==Availability== SCAR Divi 3.25 > Current ==Description== This function returns t...")
 
Line 8: Line 8:
  
 
==Description==
 
==Description==
This function returns the path to the Includes folder in your workspace. This can be used by scripts to store logs in a centralized location with writing permissions.
+
This function returns the path to the Includes folder in your workspace. This can be used by scripts to load files from includes easily.
  
 
==Example==
 
==Example==

Revision as of 00:07, 27 June 2011

Definition

function IncludesPath: AnsiString;

Availability

SCAR Divi 3.25 > Current

Description

This function returns the path to the Includes folder in your workspace. This can be used by scripts to load files from includes easily.

Example

begin
  WriteLn(IncludesPath);
end.

See Also