diff options
author | OldWorldOrdr <joey.t.reinhart@gmail.com> | 2022-06-20 11:02:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 11:02:40 -0400 |
commit | 6103d86a47039521c3d4c31a4716c1d48962a8f1 (patch) | |
tree | 95112ac7e3a583fc740eec845b2bbc3126a816fb /launcher/FileSystem.cpp | |
parent | 843c860d98dab5a438374ab136b28d409184ec81 (diff) | |
parent | b8899a534d9679aace828f9c15a9a3083685f680 (diff) | |
download | PrismLauncher-6103d86a47039521c3d4c31a4716c1d48962a8f1.tar.gz PrismLauncher-6103d86a47039521c3d4c31a4716c1d48962a8f1.tar.bz2 PrismLauncher-6103d86a47039521c3d4c31a4716c1d48962a8f1.zip |
Merge branch 'PolyMC:develop' into develop
Diffstat (limited to 'launcher/FileSystem.cpp')
-rw-r--r-- | launcher/FileSystem.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index 6de20de6..3837d75f 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -454,4 +454,47 @@ bool createShortCut(QString location, QString dest, QStringList args, QString na return false; #endif } + +QStringList listFolderPaths(QDir root) +{ + auto createAbsPath = [](QFileInfo const& entry) { return FS::PathCombine(entry.path(), entry.fileName()); }; + + QStringList entries; + + root.refresh(); + for (auto entry : root.entryInfoList(QDir::Filter::Files)) { + entries.append(createAbsPath(entry)); + } + + for (auto entry : root.entryInfoList(QDir::Filter::AllDirs | QDir::Filter::NoDotAndDotDot)) { + entries.append(listFolderPaths(createAbsPath(entry))); + } + + return entries; +} + +bool overrideFolder(QString overwritten_path, QString override_path) +{ + if (!FS::ensureFolderPathExists(overwritten_path)) + return false; + + QStringList paths_to_override; + QDir root_override (override_path); + for (auto file : listFolderPaths(root_override)) { + QString destination = file; + destination.replace(override_path, overwritten_path); + + qDebug() << QString("Applying override %1 in %2").arg(file, destination); + + if (QFile::exists(destination)) + QFile::remove(destination); + if (!QFile::rename(file, destination)) { + qCritical() << QString("Failed to apply override from %1 to %2").arg(file, destination); + return false; + } + } + + return true; +} + } |