Skip to content

Instantly share code, notes, and snippets.

@anytizer
Created January 4, 2026 22:55
Show Gist options
  • Select an option

  • Save anytizer/f23fca9df5a0c24c20da813ef2e04471 to your computer and use it in GitHub Desktop.

Select an option

Save anytizer/f23fca9df5a0c24c20da813ef2e04471 to your computer and use it in GitHub Desktop.
List of resources embedded in a Qt application
// List of resources embedded in a Qt application
QDirIterator it(":", QDirIterator::Subdirectories);
while (it.hasNext())
{
QString dir = it.next();
qDebug() << dir;
// /icons/.
// /icons/logo.svg
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment