Use qDebug to verify AppData folder

This commit is contained in:
Phil Olynyk 2019-03-30 13:43:37 -04:00
parent 605e573c2f
commit d571653c1e

View File

@ -337,6 +337,7 @@ int main(int argc, char *argv[])
} else { } else {
settings.setValue("Settings/AppData", homeDocs + getModifiedAppData()); // set up new data directory path settings.setValue("Settings/AppData", homeDocs + getModifiedAppData()); // set up new data directory path
} }
qDebug() << "First time: Setting " + GetAppData();
} }
QDir dir(GetAppData()); QDir dir(GetAppData());
@ -383,6 +384,8 @@ int main(int argc, char *argv[])
} // user wants a different folder } // user wants a different folder
} // user used --datadir folder to select a folder } // user used --datadir folder to select a folder
} // The folder doesn't exist } // The folder doesn't exist
else
qDebug() << "AppData folder already exisits, so ...";
qDebug() << "Using " + GetAppData() + " as OSCAR data folder"; qDebug() << "Using " + GetAppData() + " as OSCAR data folder";
QDir newDir(GetAppData()); QDir newDir(GetAppData());