RosettaCodeData/Task/File-input-output/Delphi/file-input-output-2.delphi
2023-07-01 13:44:08 -04:00

10 lines
215 B
Text

var
f : File ;
buff : array[1.1024] of byte ;
BytesRead : Integer ;
begin
AssignFile(f,fully qualified file name);
Reset(f,1);
Blockread(f,Buff,SizeOf(Buff),BytesRead);
CloseFile(f);
end;