Difference between revisions of "INISectionExists"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function INISectionExists(const Section, FileName: string): Boolean; </source> ==Availability== SCAR Divi 3.25 > Current ==Des...")
 
(Undo revision 502 by Freddy (talk))
 
(3 intermediate revisions by the same user not shown)
(No difference)

Latest revision as of 13:31, 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

See Also