0

我从 Activestate.org 获取了以下 python 配方,然后我简单地添加了删除密钥的方法,但是我收到错误 5,访问被拒绝,并且密钥只是我刚刚创建的用于试用该功能的假密钥。这是代码

## {{{ http://code.activestate.com/recipes/576860/ (r2)
import win32api
import win32con

def regquerysubkeys(handle, key, keylist=[]):

#get registry handle
    reghandle = win32api.RegOpenKeyEx(handle, key, 0, win32con.KEY_ALL_ACCESS)    
    try:
        i = 0
    #enumerates subkeys and recursively calls this function again
        while True:
            subkey = win32api.RegEnumKey(reghandle, i)
            #the following is the line I added myself
            win32api.RegDeleteKey(handle, key)


            i += 1
        #braintwister here ;-)
            regquerysubkeys(handle, key + subkey + "\\", keylist)
    except win32api.error as ex:
        #If no more subkeys can be found, we can append ourself
        if ex[0] == 259:
            keylist.append(key)
        #unexpected exception is raised
        else:
            raise
    finally:
    #do some cleanup and close the handle
        win32api.RegCloseKey(reghandle)
#returns the generated list
    print keylist

#call to the function
regquerysubkeys(win32con.HKEY_LOCAL_MACHINE, "SOFTWARE\\suga\\") 

这些是我在控制台中遇到的错误。

Traceback (most recent call last):
File "C:\EclipseWorkspaces\csse120\MMS-auto\test1.py", line 34, in <module>
regquerysubkeys(win32con.HKEY_LOCAL_MACHINE, "SOFTWARE\\suga\\")
File "C:\EclipseWorkspaces\csse120\MMS-auto\test1.py", line 14, in regquerysubkeys
win32api.RegDeleteKey(handle, key)
pywintypes.error: (5, 'RegDeleteKey', 'Access is denied.')

任何人都可以帮忙吗?

4

1 回答 1

0

您是否正在运行 64 位 Windows 7?注册表结构发生了一些变化,以考虑运行需要使用不同 API 进行删除的 32 位和 64 位程序。 Win32 API 文档提到在某些情况下使用。RegDeleteKeyRegDeleteKeyExWin32 API 很难从一个主要版本的 Windows 到下一个主要版本可靠地使用。不幸的是,pywin32它尽力隐藏了一些令人头疼的问题,但它仍然需要您真正了解 Win32 API 及其注意事项,然后才能有效地使用它。

于 2012-04-10T12:32:30.937 回答