- QDir Added the filter QDir::NoDotAndDotDot, for the special directories "." and "..". Added the filter QDir::AllEntries, for all entries in a directory, including symlinks.
QStringList list;...for(int i = list.count()-1; i >= 0; --i){ const QString& item = list[i]; if(item == "." || item == "..") list.removeAt(i);}