PHYSFS_init(NULL);
PHYSFS_addToSearchPath(filename.toLatin1(), 1);
char* myBuf;
PHYSFS_File* myfile;
myfile = PHYSFS_openRead("readme.txt");
if (myfile)
{
myBuf = new char[PHYSFS_fileLength(myfile)];
int length_read = PHYSFS_read(myfile, myBuf, 1, PHYSFS_fileLength(myfile));
PHYSFS_close(myfile);
qInfo(myBuf);
}