Hi,

I am building qt-4.3.2 32-bit with "-largefile" flag, but it does not seems to work.

I have a large file system. I try the following codes:

QDir myDir( path )
QStringList fileList = myDir.entryList();

It returns fileList.size() = 0, even thought there are several files in the path.

If I do QFile::exists( path/file ), it will return true.

As a result, I can't list the files in the directory...so I can't find any file I need...

If I build 64-bit application, all files can be seen....

Can someone please tell me what is the problem?

Thanks