Gar*_*hes 7 python windows winapi
有没有一种简单的方法可以在Windows中使用Python显示文件的属性对话框?
我正在尝试显示在资源管理器中右键单击文件时弹出的同一窗口,然后选择"属性".
这样做的方法是调用Windows ShellExecuteEx()
API传递properties
动词.有各种各样的高级Python包装器,但是我还没有成功地让它们与properties
动词一起使用.相反,我会用旧的ctypes
.
import time
import ctypes
import ctypes.wintypes
SEE_MASK_NOCLOSEPROCESS = 0x00000040
SEE_MASK_INVOKEIDLIST = 0x0000000C
class SHELLEXECUTEINFO(ctypes.Structure):
_fields_ = (
("cbSize",ctypes.wintypes.DWORD),
("fMask",ctypes.c_ulong),
("hwnd",ctypes.wintypes.HANDLE),
("lpVerb",ctypes.c_char_p),
("lpFile",ctypes.c_char_p),
("lpParameters",ctypes.c_char_p),
("lpDirectory",ctypes.c_char_p),
("nShow",ctypes.c_int),
("hInstApp",ctypes.wintypes.HINSTANCE),
("lpIDList",ctypes.c_void_p),
("lpClass",ctypes.c_char_p),
("hKeyClass",ctypes.wintypes.HKEY),
("dwHotKey",ctypes.wintypes.DWORD),
("hIconOrMonitor",ctypes.wintypes.HANDLE),
("hProcess",ctypes.wintypes.HANDLE),
)
ShellExecuteEx = ctypes.windll.shell32.ShellExecuteEx
ShellExecuteEx.restype = ctypes.wintypes.BOOL
sei = SHELLEXECUTEINFO()
sei.cbSize = ctypes.sizeof(sei)
sei.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_INVOKEIDLIST
sei.lpVerb = "properties"
sei.lpFile = "C:\\Desktop\\test.txt"
sei.nShow = 1
ShellExecuteEx(ctypes.byref(sei))
time.sleep(5)
Run Code Online (Sandbox Code Playgroud)
我调用的原因sleep
是属性对话框在调用过程中显示为一个窗口.如果Python可执行文件在调用ShellExecuteEx
之后立即终止,则没有任何内容可以为对话框提供服务而且它不会显示.