in reply to Re^10: inserting array of data into text file
in thread inserting array of data into text file

Yes. Whatever is left in the buffer isn't actually written out to the file yet. You don't actually need two opens of the file; you could open it for read/write, write to it, seek back to the beginning, and read from it.
  • Comment on Re^11: inserting array of data into text file