From 75274faedb783f5798d4ec0149d0f61deecaaebc Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 2 Apr 2018 02:16:32 +0200 Subject: [PATCH] Fix #268 - Use the User's profile directory under Windows --- src/dscanner/main.d | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/dscanner/main.d b/src/dscanner/main.d index d635176..0007edf 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -407,24 +407,28 @@ version (OSX) version = useXDG; */ string getDefaultConfigurationLocation() { + import std.process : environment; + import std.exception : enforce; version (useXDG) { - import std.process : environment; - string configDir = environment.get("XDG_CONFIG_HOME", null); if (configDir is null) { configDir = environment.get("HOME", null); - if (configDir is null) - throw new Exception("Both $XDG_CONFIG_HOME and $HOME are unset"); + enforce(configDir !is null, "Both $XDG_CONFIG_HOME and $HOME are unset"); configDir = buildPath(configDir, ".config", "dscanner", CONFIG_FILE_NAME); } else configDir = buildPath(configDir, "dscanner", CONFIG_FILE_NAME); return configDir; } - else version (Windows) - return CONFIG_FILE_NAME; + else version(Windows) + { + string configDir = environment.get("APPDATA", null); + enforce(configDir !is null, "%APPDATA% is unset"); + configDir = buildPath(configDir, "dscanner", CONFIG_FILE_NAME); + return configDir; + } } /**