#include "filesystem.h" #include #include bool FileSystem::fileExists(QString path) { QFileInfo check_file(path); bool exists = check_file.exists() && check_file.isFile(); if (exists == false) qWarning("%s:%i: %s%s", __FILE__, __LINE__, "Файл не найден: ", path.toStdString().c_str()); else qInfo("%s:%i: %s%s", __FILE__, __LINE__, "Файл найден: ", path.toStdString().c_str()); return exists; } QString FileSystem::fileHash(const QString &fileName, QCryptographicHash::Algorithm hashAlgorithm){ QFile file(fileName); if (file.open(QIODevice::ReadOnly)) { QByteArray fileData = file.readAll(); QByteArray hashData = QCryptographicHash::hash(fileData, hashAlgorithm); return hashData.toHex(); } return QByteArray(); } void FileSystem::clearFolder(QDir &dir){ //Получаем список файлов QStringList lstFiles = dir.entryList(QDir::Files); //Удаляем файлы foreach (QString entry, lstFiles){ QString entryAbsPath = dir.absolutePath() + "/" + entry; //QFile::setPermissions(entryAbsPath, QFile::ReadOwner | QFile::WriteOwner); qDebug() << dir.absolutePath(); QFile::remove(entryAbsPath); } } QStringList FileSystem::recognizeRegistryLotroPath() { QStringList paths; #ifdef _WIN32 // Windows 8, 10 QSettings n("HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\12bbe590-c890-11d9-9669-0800200c9a66_is1", QSettings::NativeFormat); foreach (QString key, n.allKeys()) { qDebug() << key; if(key.contains("InstallLocation") || key.contains("installlocation")){ QString folder = n.value(key).toString() .replace("\\", "/") .replace("/TurbineLauncher.exe", "") .replace("/LotroLauncher.exe", "") .replace("\"", ""); if(FileSystem::fileExists(folder + "/LotroLauncher.exe")) paths.append(folder); } } // Windows 7 QSettings m("HKEY_CLASSES_ROOT\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\MuiCache", QSettings::NativeFormat); foreach (QString key, m.allKeys()) { if((key.contains("TurbineLauncher.exe") || key.contains("LotroLauncher.exe")) && FileSystem::fileExists(key)){ QString folder = n.value(key).toString() .replace("\\", "/") .replace("/TurbineLauncher.exe", "") .replace("/LotroLauncher.exe", "") .replace("\"", ""); if(FileSystem::fileExists(folder + "/LotroLauncher.exe")) paths.append(folder); } } #else // Реализация под Linux #endif return paths; } PANIC: session(release): write data/sessions/0/8/083a73ba33a68d12: no space left on device

PANIC

session(release): write data/sessions/0/8/083a73ba33a68d12: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x8b2934)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x83d0a0)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x84fdb5)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x84fda8)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x840c73)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x850fc6)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x8493e5)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x841fca)
net/http/server.go:2836 (0x7a79b2)
net/http/server.go:1924 (0x7a341b)
runtime/asm_amd64.s:1373 (0x46f9f0)