Welcome to Dream.In.Code
Getting C++ Help is Easy!

Join 132,676 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 1,190 people online right now. Registration is fast and FREE... Join Now!




Write to file

 
Reply to this topicStart new topic

Write to file

realNoName
post 1 Sep, 2007 - 11:26 AM
Post #1


D.I.C Regular

***
Joined: 4 Dec, 2006
Posts: 299



Thanked 5 times
My Contributions


what i am trying to do is jump to part of the file and overwrite it (only that part) but am having trouble getting it to only write to that part

I know what i am trying to overwrite is 125 bytes from the end of the file and i know how to jump there its just the over writing that i cant get

Here is what i got but again dont know how to do this
CODE
int main()
{
    char title[30];
    ofstream file("c:\\test.dat",ios::binary);

    cout << "Enter title:";
    cin.getline(title,30);

    file.seekp(-125,ios::end);
    file.write(title,30);

    file.close();
    
    return 0;
}
User is offlineProfile CardPM

Go to the top of the page

musya
post 1 Sep, 2007 - 09:13 PM
Post #2


D.I.C Regular

Group Icon
Joined: 25 Apr, 2007
Posts: 291



Thanked 1 times

Dream Kudos: 50
My Contributions


QUOTE(realNoName @ 1 Sep, 2007 - 12:26 PM) *

what i am trying to do is jump to part of the file and overwrite it (only that part) but am having trouble getting it to only write to that part

I know what i am trying to overwrite is 125 bytes from the end of the file and i know how to jump there its just the over writing that i cant get

Here is what i got but again dont know how to do this
CODE
int main()
{
    char title[30];
    ofstream file("c:\\test.dat",ios::binary);

    cout << "Enter title:";
    cin.getline(title,30);

    file.seekp(-125,ios::end);
    file.write(title,30);

    file.close();
    
    return 0;
}



write() should just over wright anything that you have, try doing just a .txt file first so that you can view your file easier, to know if you have overwritten anything.
User is offlineProfile CardPM

Go to the top of the page

Reply to this topicStart new topic
Time is now: 11/23/08 06:28AM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month