how to get list of files stored in a .qrc Qt Resorce file?

Kiran P picture Kiran P · Nov 22, 2012 · Viewed 9k times · Source

I'm very new to Qt..and in my program i have added some icon files in .qrc resource file.

How can we list in our program the files stored in qrc ?

Answer

hyde picture hyde · Nov 22, 2012

Here's example code that should do it:

QDirIterator it(":", QDirIterator::Subdirectories);
while (it.hasNext()) {
    qDebug() << it.next();
}

Link to documentation: http://doc.qt.io/qt-5/qdiriterator.html