sys: Prevent portable Windows version from writing to AppData

Fixes #627
This commit is contained in:
WerWolv
2022-08-01 14:51:08 +02:00
parent 899f2b3fbd
commit b8c034f8c5
5 changed files with 38 additions and 9 deletions

View File

@@ -72,6 +72,17 @@ namespace hex::init {
fs::ImHexPath::Logs
};
// Check if ImHex is installed in portable mode
{
if (const auto executablePath = fs::getExecutablePath(); executablePath.has_value()) {
const auto flagFile = executablePath.value() / "PORTABLE";
if (fs::exists(flagFile) && fs::isRegularFile(flagFile))
ImHexApi::System::impl::setPortableVersion(true);
}
}
// Create all folders
for (auto path : paths) {
for (auto &folder : fs::getDefaultPaths(path, true)) {
try {