RosettaCodeData/Task/File-input-output/Delphi/file-input-output-2.delphi

11 lines
215 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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;