使用Python调用工作目录下所有快捷方式

来源:互联网 发布:云计算教程 百度网盘 编辑:程序博客网 时间:2024/05/16 03:26

使用Python调用工作目录下所有快捷方式

方法就是使用ShellExecute,类似VC,Python调用Windows API也很简单。

 

ActivePython 2.5 Documentation 中关于ShellExecute函数的说明:

 

win32api.ShellExecute

 

int = ShellExecute(hwnd, op , file , params , dir , bShow )

 

Opens or prints a file.

 

Parameters

 

hwnd : int

The handle of the parent window, or 0 for no parent. This window receives any message boxes an application produces (for example, for error reporting).

op : string

The operation to perform. May be "open", "print", or None, which defaults to "open".

file : string

The name of the file to open.

params : string

The parameters to pass, if the file name contains an executable. Should be None for a document file.

dir : string

The initial directory for the application.

bShow : int

Specifies whether the application is shown when it is opened. If the lpszFile parameter specifies a document file, this parameter is zero.

 

Win32 API References

 

Search for ShellExecute at msdn, google or google groups.

 

Return Value

The instance handle of the application that was run. (This handle could also be the handle of a dynamic data exchange [DDE] server application.) If there is an error, the method raises an exception. 

原创粉丝点击