I use this code to create a .ini file in the project folder:
uses IniFiles var Form1: TForm1; Ini: TIniFile; procedure TForm1.FormCreate(Sender: TObject); begin Ini := TIniFile.Create(ExtractFilePath(ParamStr(0))+'config.ini'); Ini.Free; end; but nothing is created at startup. What's the matter ?