When I do this:
QDir myDir("/home/some/location");
QStringList filesList = myDir.entryList("*");
it is returning both the files and the directories inside that location. But I want only files. And the files can have arbitrary extensions. Any ideas?
Use QDir::entryInfoList to return a list of QFileInfo objectsd and then check the state of each of them, you can also use filters to only return a list of files /and/or dirs