复制sys32 / config时,shutil.copytree权限被拒绝

时间:2018-12-11 16:16:30

标签: python windows

我正在尝试将整个文件夹配置复制到c:\ windows \ system32下,并且它复制了一些其他进程未使用的文件,其余文件由于许可而失败。我以管理员权限运行代码,但仍不复制SAM,SYSTEM,SECURITY等。

这不是Windows的事情,因为我已在具有管理员权限的3台计算机上应用了此代码,并且它们都有相同的问题。有什么办法可以解决这个问题?

这是代码:

def copyDirectory():
    try:
        path = "C:\\Windows\\System32\\config"
        dest = "Event"
        shutil.copytree(path, dest)
    except shutil.Error as e:
        print('Directory not copied. Error: %s' % e)
    except OSError as e:
        print('Directory not copied. Error: %s' % e)

0 个答案:

没有答案