Loop through values or registry key.. _winreg Python

前端 未结 5 609
清歌不尽
清歌不尽 2021-01-17 21:40

How would I loop through all the values of a Windows Registry Key using the Python module _winreg. I have code that will do what I want, but it is

5条回答
  •  难免孤独
    2021-01-17 21:51

    Shouldn't EnumValue be of help here

    # list all values for a key
    try:
        count = 0
        while 1:
            name, value, type = _winreg.EnumValue(t, count)
            print repr(name),
            count = count + 1
    except WindowsError:
        pass
    

提交回复
热议问题