Hi I am developing Qt project and for file reading I use symbian c++ coding. Here is my code for that
RFs iFileServer;
User::LeaveIfError(iFileServer.Connect());
RFile aFile;
TInt err = aFile.Open(iFileServer,_L("file.zip"),EFileRead);
file.zip is located in S60 private\ec45d767\file.zip and it reads the file perfectly.
Now I have the file in my project folder resource\file1.zip and I added it in *.qrc file. I want to know how to mention this location in the above code.
Please give the solution.
Regards,
Bala



