Difference between Run() and ShellExecute()

半城伤御伤魂 提交于 2019-11-27 16:14:42
Bookeater

Run() is used to fire off executable files only. It requires the full path of the program.

ShellExecute() also accepts content files like .txt, .htm and .docx and will start the executable associated with it. The verb option can be used to control what action to perform on the file. It utilizes the Windows ShellExecute API.

References:
AutoIt Wiki - FAQ - How can I run something that is not an exe file…

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!