From f47c9186bf3a8e21d20d797e3a56b45d92f0a10e Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 30 May 2011 12:48:23 +0100 Subject: [PATCH] Fix #1504 - Win32 run deluged as not logged in user via runas or service --- deluge/common.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/deluge/common.py b/deluge/common.py index b9a19eef4..eaaa3b161 100644 --- a/deluge/common.py +++ b/deluge/common.py @@ -136,10 +136,17 @@ def get_default_config_dir(filename=None): """ if windows_check(): + appDataPath = os.environ.get("APPDATA") + if not appDataPath: + import _winreg + hkey = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders") + appDataReg = _winreg.QueryValueEx(hkey, "AppData") + appDataPath = appDataReg[0] + _winreg.CloseKey(hkey) if filename: - return os.path.join(os.environ.get("APPDATA"), "deluge", filename) + return os.path.join(appDataPath, "deluge", filename) else: - return os.path.join(os.environ.get("APPDATA"), "deluge") + return os.path.join(appDataPath, "deluge") else: import xdg.BaseDirectory if filename: