I have a huge file, I sometimes need to add a stream to it at the end. Is using TFileStream a good idea? Will it be fast and not much I/O operations will be performed?

Comments

  1. R Gosp Why would the size of the file matter if all you want to do is write at the end of it. Open it, seek to the end and write.

    ReplyDelete
  2. David Heffernan Thomas Mueller I need in the REST file upload service to save subsequent parts of the file when sending by a client in next requests.

    ReplyDelete
  3. David Heffernan In that case you are right

    ReplyDelete

Post a Comment