我正在尝试将整个文件夹配置复制到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)