I have this code to read file contents to an AnsiString
variable.
var
c:char;
f:file of char;
s:ansistring;
begin
assign(f,'file');
reset(f);
s:='';
while not eof(f) do
begin
read(f,c);
s:=s+c;
end;
close(f);
end;
This code runs very slowly. I have a file 1 MB and the program runs for about 27 seconds.
How do I read file contents to AnsiString
faster?
You are reading character/character and appending in string which is why your program is slow. It is not logical to read entire file in single variable. Use buffer to store the content of file read then process it and free the buffer for next read input.
More examples at File Handling in Pascal