All Functions Modules Pages
ini

Functions

STRING ini.read (STRING path, STRING section, STRING key, STRING default)
 Read an entry of a Ini file. More...
 
STRING ini.read (STRING path, STRING key, STRING default)
 Read an entry of a Ini file (without section). More...
 
NIL ini.write (STRING path, STRING section, STRING key, STRING data)
 Write data into ini file. More...
 
NIL ini.write (STRING path, STRING key, STRING data)
 Write data into ini file without including section. More...
 

Detailed Description

Ini files functions.

Function Documentation

STRING ini.read ( STRING  path,
STRING  section,
STRING  key,
STRING  default 
)

Read an entry of a Ini file.

Parameters
pathPath of the ini file.
sectionSection name.
keyKey name.
defaultDefault value returned if key not found.
Returns
Value found due the key or default value.
STRING ini.read ( STRING  path,
STRING  key,
STRING  default 
)

Read an entry of a Ini file (without section).

Parameters
pathPath of the ini file.
keyKey name.
defaultDefault value returned if key not found.
Returns
Value found or default value.
NIL ini.write ( STRING  path,
STRING  section,
STRING  key,
STRING  data 
)

Write data into ini file.

Parameters
pathPath of the ini file.
sectionSection name.
keyKey name.
dataData to write or save into the ini.
Returns
Nothing.
NIL ini.write ( STRING  path,
STRING  key,
STRING  data 
)

Write data into ini file without including section.

Parameters
pathPath of the ini file.
keyKey name.
dataData to write or save into the ini.
Returns
Nothing.