#ifndef FILESYSTEM_H #define FILESYSTEM_H #include #include #include #include #include #include #include #include "filesystem.h" namespace FileSystem { bool fileExists(QString path) { QFileInfo check_file(path); return check_file.exists() && check_file.isFile(); } bool folderExists(QString path) { return QDir(path).exists(); } bool createFilePath(QString file_path) { // Creates all necessary directories for file QDir dir; return dir.mkpath(QFileInfo(file_path).absoluteDir().absolutePath()); } QString fileHash(const QString &fileName, QCryptographicHash::Algorithm hashAlgorithm = QCryptographicHash::Md5) { QFile file(fileName); if (file.open(QIODevice::ReadOnly)) { QCryptographicHash hash(hashAlgorithm); hash.addData(&file); QByteArray hashData = hash.result(); return hashData.toHex(); } return QByteArray(); } void 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 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(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")) && fileExists(key)){ QString folder = n.value(key).toString() .replace("\\", "/") .replace("/TurbineLauncher.exe", "") .replace("/LotroLauncher.exe", "") .replace("\"", ""); if(fileExists(folder + "/LotroLauncher.exe")) paths.append(folder); } } #else // Реализация под Linux #endif return paths; } } #endif // FILESYSTEM_H PANIC: session(release): write data/sessions/7/8/78cc9e441fdb933d: no space left on device

PANIC

session(release): write data/sessions/7/8/78cc9e441fdb933d: 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)