Page 1 of 1

Loading/Writing of files under Symbian

PostPosted: Apr 26, 2004 @ 9:24pm
by Marco

PostPosted: Apr 26, 2004 @ 11:19pm
by jonasb
The Symbian way to do it is using the file server for file manipulations. See for example

PostPosted: Apr 28, 2004 @ 2:40pm
by Marco

PostPosted: Apr 28, 2004 @ 3:10pm
by ruis
You can also use the standard C way of doing things if you are familiar with these (fread, fwrite etc). Look at for a list of implemented functions in the C/POSIX standard library. Remember to link against estlib.lib and to call CloseSTDLIB() when you don't need the stdlib anymore. Not calling this will result in a memory leak.

//Erik