Code: Alles auswählen
// with TINiFile.Create('c:\temp\λλάς.ini') do //-> λλάς.ini
// with TINiFile.Create(UTF8ToSys('c:\temp\λλάς.ini')) do -> IOError c:\temp\????.ini could not...
// with TINiFile.Create(UTF8ToSys('c:\temp\Русские.ini')) do -> IOError c:\temp\????.ini could not...
with TINiFile.Create(UTF8ToSys('c:\temp\äöü.ini')) do // -> ok
try
WriteString('test','test','test');
finally
Free;
end;