Can anyone tell me the format for reading information into a program and if I want to save information out of the prgram into a txt file.
I understand it to be
Assign (file name, path)
reset (filename)
close (file name)
and to write information out
assign (filename, path);
rewrite(filename, with all the information)
close (filename)
Which brings up another question: Is it possible to read the txt file line by line and then save it out to another txt file line by line or must it be done as a entir file?