install pywin32-220
This commit is contained in:
parent
15d9012f5a
commit
93f7d415a0
581 changed files with 100203 additions and 0 deletions
15
Lib/site-packages/win32comext/shell/demos/shellexecuteex.py
Normal file
15
Lib/site-packages/win32comext/shell/demos/shellexecuteex.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from win32com.shell import shell, shellcon
|
||||
import win32con
|
||||
|
||||
def ExplorePIDL():
|
||||
pidl = shell.SHGetSpecialFolderLocation(0, shellcon.CSIDL_DESKTOP)
|
||||
print("The desktop is at", shell.SHGetPathFromIDList(pidl))
|
||||
shell.ShellExecuteEx(fMask=shellcon.SEE_MASK_NOCLOSEPROCESS,
|
||||
nShow=win32con.SW_NORMAL,
|
||||
lpClass="folder",
|
||||
lpVerb="explore",
|
||||
lpIDList=pidl)
|
||||
print("Done!")
|
||||
|
||||
if __name__=='__main__':
|
||||
ExplorePIDL()
|
||||
Loading…
Add table
Add a link
Reference in a new issue