Hi community,
I know how to specify the file extensions that I would like to be considered when I call the QDir::entryList method:

Qt Code:
  1. QDir dir(path);
  2. QStringList files = dir.entryList(QStringList() << "*.ext1" << "*.ext2", QDir::Files | QDir::NoDot | QDir::NoDotAndDotDot);
To copy to clipboard, switch view to plain text mode 

In this case the files having extensions ext1 and ext2 only are considered. But how to exclude a specific extension?
For example I would like to considere ALL the extensions except a specific one ( in my case *.conf )

Thx