How to use .Ini Files in FMX/Delphi

5.8k Views Asked by At

For a program I really need your help.

I found a cross platform Delphi script to save and load INI files on devices, which was made for an earlier Delphi version.

Now, here's my problem: It works perfectly fine on my Windows computer, but won't work on Android. The main problem is that it doesn't know the unit reference on Line 61 (FMX.Inifiles.Android) and, missing this unit, it can't proceed.

Any ideas how I could fix that?

1

There are 1 best solutions below

6
On

You can use the IniFiles unit. I have used it on android, windows and linux and it seems to work fine. For the file path on android you would use something like: System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini'

Code example on saving ini on adnroid:

procedure SaveSettingString(Section, Name, Value: string);
var
  ini: TIniFile;
begin
  ini := TIniFile.Create(System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini');
  try
    ini.WriteString(Section, Name, Value);
  finally
    ini.Free;
  end;
end;

Example on loading a string:

function LoadSettingString(Section, Name, Value: string): string;
var
  ini: TIniFile;
begin
  ini := TIniFile.Create(System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini');
  try
    Result := ini.ReadString(Section, Name, Value);
  finally
    ini.Free;
  end;
end;

When loading what ever you set as the value will be returned if that Name/Key does not exist.