// type-specific handling goes here if (isConfigLocation(type)) { QString programData = sHGetKnownFolderPath(FOLDERID_ProgramData); if (!programData.isEmpty()) { if (!isGenericConfigLocation(type)) appendOrganizationAndApp(programData); dirs.append(programData); } #ifndef QT_BOOTSTRAPPED // Note: QCoreApplication::applicationDirPath(), while static, requires // an application instance. But we might need to resolve the standard // locations earlier than that, so we fall back to qAppFileName(). QString applicationDirPath = qApp ? QCoreApplication::applicationDirPath() : QFileInfo(qAppFileName()).path(); dirs.append(applicationDirPath); const QString dataDir = applicationDirPath + "/data"_L1; dirs.append(dataDir);
if (!isGenericConfigLocation(type)) { QString appDataDir = dataDir; appendOrganizationAndApp(appDataDir); if (appDataDir != dataDir) dirs.append(appDataDir); } #endif// !QT_BOOTSTRAPPED } // isConfigLocation()