Hi , I want to list all the subdirectories from a directory i got from the input. But i don't know how to do it. Can anyone hep me with this ?
Hi , I want to list all the subdirectories from a directory i got from the input. But i don't know how to do it. Can anyone hep me with this ?
Look at QDir, QDir::entryList(), and QDir::entryInfoList() and use a filer in the QDir constructor or QDir::setFilter to ensure you get only directory entries, etc.
Arshia Aghaei (5th July 2015)
How to for example find all *.dll files in the directory (Extension filter) ?
Use the name filter to filter based on file names, which includes extensions. i.e. *.dll
Arshia Aghaei (1st July 2015)
Bookmarks