14 lines
255 B
Text
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.
|