fprintf return success but can't write to an existin file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:15:12Z http://stackoverflow.com/feeds/question/45571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45571/fprintf-return-success-but-cant-write-to-an-existin-file 2 fprintf return success but can't write to an existin file Sasayins 2008-09-05T11:24:39Z 2008-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#45573 3 Answer by Harry for fprintf return success but can't write to an existin file Harry 2008-09-05T11:27:31Z 2008-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#45575 0 Answer by zappan for fprintf return success but can't write to an existin file zappan 2008-09-05T11:28:11Z 2008-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#45586 0 Answer by Sasayins for fprintf return success but can't write to an existin file Sasayins 2008-09-05T11:37:41Z 2008-09-05T11:37:41Z <p>yup close() and fflush() is my problem. thanks alot!</p>