我想使用Python函数将文件列表复制到Windows系统目录(C:\Windows)
。
我有一个功能:
import shutil
def copy_list(src_list, dst):
for file in src_list:
shutil.copy(file, dst)
我想这样称呼它:
def copy_as_admin():
#... some code to obtain user elevation ...
copy_list(files_list, "C:\\Windows\")
我怎样才能做到这一点? PS:我正在使用Python3,我在这个帖子中尝试过解决方案, How to run python script with elevated privilege on windows 但这些解决方案适用于Python版本2。
答案 0 :(得分:1)
您无法在Windows上的运行时更改权限。
应用程序需要有一个清单(不适合python)或以特权用户身份运行。
当应用程序启动且权限太低时,您可以要求用户以管理员身份运行,或者让应用程序通过调用runas
以提升的权限重新启动自己。
import ctypes
if not ctypes.windll.shell32.IsUserAnAdmin():
print('Not enough priviledge, restarting...')
import sys
ctypes.windll.shell32.ShellExecuteW(
None, 'runas', sys.executable, ' '.join(sys.argv), None, None)
exit(0)
else:
print('Elevated privilege acquired')
答案 1 :(得分:1)
以下示例以 Cyrbil 优秀作品为基础。特别是,引入了两个枚举。第一个允许轻松指定如何打开提升的程序,第二个允许在需要轻松识别错误时提供帮助。请注意,如果您希望将所有命令行参数传递给新进程,sys.argv[0]
可能应该替换为函数调用:subprocess.list2cmdline(sys.argv)
。
#! /usr/bin/env python3
import ctypes
import enum
import sys
# Reference:
# msdn.microsoft.com/en-us/library/windows/desktop/bb762153(v=vs.85).aspx
class SW(enum.IntEnum):
HIDE = 0
MAXIMIZE = 3
MINIMIZE = 6
RESTORE = 9
SHOW = 5
SHOWDEFAULT = 10
SHOWMAXIMIZED = 3
SHOWMINIMIZED = 2
SHOWMINNOACTIVE = 7
SHOWNA = 8
SHOWNOACTIVATE = 4
SHOWNORMAL = 1
class ERROR(enum.IntEnum):
ZERO = 0
FILE_NOT_FOUND = 2
PATH_NOT_FOUND = 3
BAD_FORMAT = 11
ACCESS_DENIED = 5
ASSOC_INCOMPLETE = 27
DDE_BUSY = 30
DDE_FAIL = 29
DDE_TIMEOUT = 28
DLL_NOT_FOUND = 32
NO_ASSOC = 31
OOM = 8
SHARE = 26
def bootstrap():
if ctypes.windll.shell32.IsUserAnAdmin():
main()
else:
hinstance = ctypes.windll.shell32.ShellExecuteW(
None, 'runas', sys.executable, sys.argv[0], None, SW.SHOWNORMAL
)
if hinstance <= 32:
raise RuntimeError(ERROR(hinstance))
def main():
# Your Code Here
print(input('Echo: '))
if __name__ == '__main__':
bootstrap()