|
Posted by Rik on 07/31/07 01:15
On Tue, 31 Jul 2007 03:10:10 +0200, ttrium <arcotik@gmail.com> wrote:
> Ok, so this is probably the easist question ever posted, but I
> honestly can't find the answer (if there is one).
>
> How do I (by which function) add data to a file at the beginning of a
> file, rather than the end of the file (as is with fopen(file, "a"))?
You cannot 'prepend' data. You'll have to fetch the content, write your
new content to the beginning of the file, and then add the old content.
--
Rik Wasmus
[Back to original message]
|