Difference between revisions of "LogsPath"
From SCAR Divi Manual
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | function LogsPath: | + | function LogsPath: string; |
</source> | </source> | ||
Line 18: | Line 18: | ||
==See Also== | ==See Also== | ||
+ | *[[WorkspacePath]] | ||
*[[IncludesPath]] | *[[IncludesPath]] | ||
*[[ScreenPath]] | *[[ScreenPath]] | ||
*[[FontsPath]] | *[[FontsPath]] | ||
*[[AppPath]] | *[[AppPath]] | ||
+ | *[[ScriptPath]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:File Functions]] | [[Category:File Functions]] |
Latest revision as of 14:38, 4 April 2012
Definition
function LogsPath: string;
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.