QString Fingerprint::directoryPath() { CoreInterface coreInterface; QString profileDir = coreInterface.getProfileDir(); return QString("%1/%2") .arg(profileDir) .arg(kDirName); }
void SubscriptionManager::persistDirectory() { CoreInterface coreInterface; QString profileDir = coreInterface.getProfileDir(); QDir dir(profileDir); if (!dir.exists()) { dir.mkpath("."); } }