本文整理汇总了Python中six.moves.winreg.QueryInfoKey方法的典型用法代码示例。如果您正苦于以下问题:Python winreg.QueryInfoKey方法的具体用法?Python winreg.QueryInfoKey怎么用?Python winreg.QueryInfoKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类six.moves.winreg
的用法示例。
在下文中一共展示了winreg.QueryInfoKey方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: valuestodict
# 需要导入模块: from six.moves import winreg [as 别名]
# 或者: from six.moves.winreg import QueryInfoKey [as 别名]
def valuestodict(key):
"""Convert a registry key's values to a dictionary."""
dout = {}
size = winreg.QueryInfoKey(key)[1]
tz_res = None
for i in range(size):
key_name, value, dtype = winreg.EnumValue(key, i)
if dtype == winreg.REG_DWORD or dtype == winreg.REG_DWORD_LITTLE_ENDIAN:
# If it's a DWORD (32-bit integer), it's stored as unsigned - convert
# that to a proper signed integer
if value & (1 << 31):
value = value - (1 << 32)
elif dtype == winreg.REG_SZ:
# If it's a reference to the tzres DLL, load the actual string
if value.startswith('@tzres'):
tz_res = tz_res or tzres()
value = tz_res.name_from_string(value)
value = value.rstrip('\x00') # Remove trailing nulls
dout[key_name] = value
return dout
示例2: get_acroversion
# 需要导入模块: from six.moves import winreg [as 别名]
# 或者: from six.moves.winreg import QueryInfoKey [as 别名]
def get_acroversion():
" Return version of Adobe Acrobat executable or None"
from six.moves import winreg
adobesoft = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r'Software\Adobe')
for index in range(winreg.QueryInfoKey(adobesoft)[0]):
key = winreg.EnumKey(adobesoft, index)
if "acrobat" in key.lower():
acrokey = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, 'Software\\Adobe\\%s' % key)
for index in range(winreg.QueryInfoKey(acrokey)[0]):
numver = winreg.EnumKey(acrokey, index)
try:
res = winreg.QueryValue(winreg.HKEY_LOCAL_MACHINE, 'Software\\Adobe\\%s\\%s\\InstallPath' % (key, numver))
return res
except Exception:
pass
return None
示例3: list
# 需要导入模块: from six.moves import winreg [as 别名]
# 或者: from six.moves.winreg import QueryInfoKey [as 别名]
def list():
"""Return a list of all time zones known to the system."""
with winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE) as handle:
with winreg.OpenKey(handle, TZKEYNAME) as tzkey:
result = [winreg.EnumKey(tzkey, i)
for i in range(winreg.QueryInfoKey(tzkey)[0])]
return result