mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
'\\' join path parts
This commit is contained in:
parent
e9d1e7ffa2
commit
5aaa9aab71
@ -12,27 +12,32 @@ if platform.system() != "Windows":
|
|||||||
|
|
||||||
|
|
||||||
VM_KEY = "VB:Voicemeeter {17359A74-1236-5467}"
|
VM_KEY = "VB:Voicemeeter {17359A74-1236-5467}"
|
||||||
REG_KEY = "".join(
|
REG_KEY = "\\".join(
|
||||||
[
|
filter(
|
||||||
|
None,
|
||||||
|
(
|
||||||
"SOFTWARE",
|
"SOFTWARE",
|
||||||
("\\WOW6432Node" if bits == 64 else ""),
|
"WOW6432Node" if bits == 64 else "",
|
||||||
"\\Microsoft\\Windows\\CurrentVersion\\Uninstall",
|
"Microsoft",
|
||||||
]
|
"Windows",
|
||||||
|
"CurrentVersion",
|
||||||
|
"Uninstall",
|
||||||
|
),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def get_vmpath():
|
def get_vmpath():
|
||||||
with winreg.OpenKey(
|
with winreg.OpenKey(
|
||||||
winreg.HKEY_LOCAL_MACHINE, r"{}".format(REG_KEY + "\\" + VM_KEY)
|
winreg.HKEY_LOCAL_MACHINE, r"{}".format("\\".join((REG_KEY, VM_KEY)))
|
||||||
) as vm_key:
|
) as vm_key:
|
||||||
return winreg.QueryValueEx(vm_key, r"UninstallString")[0]
|
return winreg.QueryValueEx(vm_key, r"UninstallString")[0]
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
vm_path = Path(get_vmpath())
|
vm_parent = Path(get_vmpath()).parent
|
||||||
except FileNotFoundError as e:
|
except FileNotFoundError as e:
|
||||||
raise InstallError(f"Unable to fetch DLL path from the registry") from e
|
raise InstallError(f"Unable to fetch DLL path from the registry") from e
|
||||||
vm_parent = vm_path.parent
|
|
||||||
|
|
||||||
DLL_NAME = f'VoicemeeterRemote{"64" if bits == 64 else ""}.dll'
|
DLL_NAME = f'VoicemeeterRemote{"64" if bits == 64 else ""}.dll'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user