hi,
i am creating a file like this,
_LIT(fileName,"ssfile.dat");
RFs fsSession;
fsSession.Connect();
file.Create(fsSession,fileName,EFileWrite);
but i want to create a file at a specified location, how is it possible.
thanks
Printable View
hi,
i am creating a file like this,
_LIT(fileName,"ssfile.dat");
RFs fsSession;
fsSession.Connect();
file.Create(fsSession,fileName,EFileWrite);
but i want to create a file at a specified location, how is it possible.
thanks
Just specify the full path in your fileName declaration, e.g. "c:\\system\\apps\\programname\\file.txt" or "c:\\nokia\\images\\myimage.png".
Antony
hi,
it worked
i was also using this but not giving "c:\\"
thank very much
regards
sunny