RosettaCodeData/Task/Read-entire-file/Delphi/read-entire-file-2.delphi
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

14 lines
255 B
Text

program ReadAll;
{$APPTYPE CONSOLE}
uses
SysUtils, IOUtils;
begin
// with default encoding:
Writeln(TFile.ReadAllText('C:\autoexec.bat'));
// with encoding specified:
Writeln(TFile.ReadAllText('C:\autoexec.bat', TEncoding.ASCII));
Readln;
end.