Re: [Tutor] Recursive functions and the windows registry

2006-11-16 Thread Alan Gauld
"Todd Dahl" <[EMAIL PROTECTED]> wrote > By the way I don't understand why it seems to work inside the > ListRegistryKeys function but it doesn't pass all the information > back to > the parseRegistry function. > def ListRegistryKeys(path): > ... >name = [] > >try: >while 1: >

[Tutor] Recursive functions and the windows registry

2006-11-16 Thread Todd Dahl
I have been fighting with this for a couple of days and am getting frustrated with it. I am trying to figure out a way to walk through the windows registry and to capture all nodes under the HKEY_CLASSES_ROOT\CLSID key and then put it into a list. I have been trying to do it with a recursive fu