How do I write a TXT file on android using delphi 10 Seatle? I have tried this way and only the error;
try
file1 := TIniFile.Create(System.IOUtils.TPath.GetDownloadsPath+PathDelim+'postogestorcoletor.ini');
file1.WriteString('postogestorcoletor','testeteste', 'asasasasasas');
file1.Free;
finally
ShowMessage('Erro ao criar arquivo');
end;