Difference between revisions of "LogsPath"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>function LogsPath: AnsiString;</func> ==Availability== SCAR Divi 3.25 > Current ==Description== This function returns the path to the Logs folder in your w...")
 
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>function LogsPath: AnsiString;</func>
+
<source lang="scar" lines="false">
 +
function LogsPath: AnsiString;
 +
</source>
  
 
==Availability==
 
==Availability==

Revision as of 12:37, 26 June 2011

Definition

function LogsPath: AnsiString;

Availability

SCAR Divi 3.25 > Current

Description

This function returns the path to the Logs folder in your workspace. This can be used by scripts to store logs in a centralized location with writing permissions.

Example

begin
  WriteLn(LogsPath);
end.

See Also