Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ReadPrivateIni

Reads items from a specific section within a specified file.

Function

OperationCommand

ReadPrivateIni(“Section”,”Item”,”File Name”)

Script

n=ReadPrivateIni(“Section”,”Item”,”File Name”)

Description

Reads items from a specific section within a specified file.

Example

Reads the “File1” Item in the “File” section of the “Backup.ini” file.

ReadPrivateIni("File","File1","Backup.ini")

...

WritePrivateIni

Enters a value in a specific item of a specific section within a specified file.

Function

OperationCommand

WritePrivateIni(“Section”,”Item”,”Value”,”File Name”)

Script

WritePrivateIni “Section”,”Item”,”Value”,”File Name”

Description

Enters a value in a specific item of a specific section within a specified file.

Example

Enters “TEST” in the “File1” item of the “File” section within the “Backup.ini” file.

WritePrivateIni("File","File1",”TEST”,"Backup.ini")

...