vote up 2 vote down star

Hello
I want the ofstream to write at the end of a file without erasing its content inside.
how can i do it? (i'm talking about txt files,and C++)
Thanks.

flag

4 Answers

vote up 6 vote down

You can pass the flag ios::app when opening the file:

ofstream ofs("filename", ios::app);
link|flag
vote up 0 vote down

Use ios::app as the file mode.

link|flag
vote up 1 vote down

You want to append to the file. Use ios::app as the file mode when creating the ofstream.

Appending will automatically seek to the end of the file.

link|flag
vote up 0 vote down

you can also manually move the pointer once the file is open using seekp()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.