Qt 6.11 is out! See what's new in the release
blog
Hidden file and symlinks
General and Desktop
2
Posts
2
Posters
1.3k
Views
1
Watching
-
Hi everybody. I use this
"QStringList QSLFiles= QDPath.entryList(QDir::AllEntries | QDir::NoDotAndDotDot | QDir::Hidden);"
for obtain the list of files in a directoty but I can't get the hidden files and symlinks (on Windows). What must I do to get all files? -
Have you tried
@QDir::System #0x200 List system files (on Unix, FIFOs, sockets and device files are included; on Windows, .lnk files are included)
@
A full list of Filter-enums can be found here:
http://qt-project.org/doc/qt-4.8/qdir.html#Filter-enumhope this helps :)