Difference between revisions of "INISectionExists"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function INISectionExists(const Section, FileName: string): Boolean; </source> ==Availability== SCAR Divi 3.25 > Current ==Des...") |
(No difference)
|
Revision as of 12:10, 1 July 2011
Definition
function INISectionExists(const Section, FileName: string): Boolean;
Availability
SCAR Divi 3.25 > Current
Description
Returns true if a section specified by Section in an INI file specified by FileName exists. If the file does not exist, the function returns false as well. When FileName contains an invalid file path, an exception is thrown and the script is stopped.
Example
begin WriteLn(INISectionExists('Section', LogsPath + 'Test.ini')); WriteINI('Section', 'Key', 'Hello World!', LogsPath + 'Test.ini'); WriteLn(INISectionExists('Section', LogsPath + 'Test.ini')); DeleteFile(LogsPath + 'Test.ini'); end.
Output:
0 1