create config dir instead of complaining it doesn't exist

This commit is contained in:
Albert S. 2019-08-24 09:41:07 +02:00
parent 6c67c11481
commit 1284519280
1 changed files with 5 additions and 2 deletions

View File

@ -44,8 +44,11 @@ int main(int argc, char *argv[])
QDir dir;
if(!dir.exists(configDirectoryPath))
{
QMessageBox::warning(nullptr, "Directory not found", configDirectoryPath + " was not found!");
return 1;
if(!dir.mkdir(configDirectoryPath))
{
QMessageBox::warning(nullptr, "Failed to create dir", configDirectoryPath + " was not found and could not be created!");
return 1;
}
}
QSettings settings(configDirectoryPath + "qsrun.config", QSettings::NativeFormat);