What could the possible reasons that I encounter an error when i execute "iFsSession.CreatePrivatePath(EDriveC);" on my device?
It is working okay on my emulator.
Btw, I am unable to perform on-device debugging, thus I inserted a LeaveIfError code, and it indeed closes my application but I am unable to find out the exact error code.
Is there some way for me to log this down? I'm new to symbian. But most importantly, why is it that I can't create a private path?
Thanks.
Re: error encountered when CreatePrivatePath()
2008-12-15, 11:10#2
You could first fetch the error sth like this
TInt error = iFsSession.CreatePrivatePath(EDriveC);
and then log the error if you donot know how to log try searching RFileLogger in http://wiki.forum.nokia.com then call
User::LeaveIfError( error );
Thus you will know what the error is.
Regards,
Sriky
Re: error encountered when CreatePrivatePath()
2008-12-15, 15:36#4