Hello Laser, By default, after opening the file, the read/write pointer is set to the start of the file, meaning you'll overwrite anything that's inside the file so far. You can place the pointer at the end by calling fx_file_relative_seek(p_file, 0, FX_SEEK_END);. Regards
↧