Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Qt 很陌生。在我的程序中,我在 .qrc 资源文件中添加了一些图标文件。
我们如何在程序中列出存储在 qrc 中的文件?
这是应该执行此操作的示例代码:
QDirIterator it(":", QDirIterator::Subdirectories); while (it.hasNext()) { qDebug() << it.next(); }
文档链接: http: //doc.qt.io/qt-5/qdiriterator.html