mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
31 lines
668 B
C++
31 lines
668 B
C++
|
#include "appdatapath.h"
|
||
|
|
||
|
#include <QDebug>
|
||
|
#include <QDir>
|
||
|
#include <QStandardPaths>
|
||
|
|
||
|
QString Path::appdataPath;
|
||
|
std::mutex Path::appdataPathMutex;
|
||
|
|
||
|
const QString &Path::getAppdataPath()
|
||
|
{
|
||
|
std::lock_guard<std::mutex> lock(appdataPathMutex);
|
||
|
|
||
|
if (appdataPath.isEmpty()) {
|
||
|
#ifdef PORTABLE
|
||
|
QString path = QCoreApplication::applicationDirPath();
|
||
|
#else
|
||
|
QString path =
|
||
|
QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/Chatterino2/";
|
||
|
#endif
|
||
|
|
||
|
QDir(QDir::root()).mkdir(path);
|
||
|
|
||
|
appdataPath = path;
|
||
|
}
|
||
|
|
||
|
qDebug() << "memes: " << appdataPath;
|
||
|
|
||
|
return appdataPath;
|
||
|
}
|