fprintf return success but can't write to an existin file - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T15:15:12Zhttp://stackoverflow.com/feeds/question/45571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45571/fprintf-return-success-but-cant-write-to-an-existin-file2fprintf return success but can't write to an existin fileSasayins2008-09-05T11:24:39Z2008-09-05T11:37:41Z
<p>In my codes, fprintf return successful by returning the number of bytes written in STREAM, but in the actual file the string I put is not there.</p>
http://stackoverflow.com/questions/45571/fprintf-return-success-but-cant-write-to-an-existin-file/45573#455733Answer by Harry for fprintf return success but can't write to an existin fileHarry2008-09-05T11:27:31Z2008-09-05T11:27:31Z<p>The output is probably just buffered. Try closing the file using close() or call fflush() on the stream to force the string to the file.</p>
http://stackoverflow.com/questions/45571/fprintf-return-success-but-cant-write-to-an-existin-file/45575#455750Answer by zappan for fprintf return success but can't write to an existin filezappan2008-09-05T11:28:11Z2008-09-05T11:28:11Z<p>one thing you haven't mentioned is have you done the flush() on the stream? although it should happen at the moment you're closing the stream.</p>
<p>and the other - you say "in the actual file the string is not there". do you mean you have nothing written in the file, or you have some junk written there? can it be a difference between the ascii and binary stream being used in your case?</p>
http://stackoverflow.com/questions/45571/fprintf-return-success-but-cant-write-to-an-existin-file/45586#455860Answer by Sasayins for fprintf return success but can't write to an existin fileSasayins2008-09-05T11:37:41Z2008-09-05T11:37:41Z<p>yup close() and fflush() is my problem. thanks alot!</p>