如何让Windows根据文件关联打开外部文件?
使用 Win32 特定的 API,是否有一种简单的方法可以通过传入文件的路径/名称来启动外部应用程序来打开文件?
例如,假设我有一个名为 C:\tmp\image.jpg 的文件。 我可以调用一个 API 来告诉 Windows 打开与 .jpg 文件关联的应用程序吗? 无需进行大量注册表查找?
我以为我记得很多年前做过这个,但我找不到它。
Using Win32-specific APIs, is there an easy way to start an external application to open a file simply by passing in the path/name of the file?
For example, say I have a file called C:\tmp\image.jpg. Is there a single API that I can call to tell Windows to open the application associated with .jpg files? Without having to do a bunch of registry lookups?
I thought I remembered doing this many years ago, but I cannot find it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ShellExecute
ShellExecute
ShellExecute 就是您正在寻找的函数。 它可以处理可执行类型和注册文件类型,和对文件执行各种操作(动词),具体取决于它支持的内容。
语法是:
请查阅您的友好邻居 MSDN 文档以获取更多详细信息。
ShellExecute is the function you're looking for. It can handle both executable types and registered file types, and perform all sorts of actions (verbs) on the file, depending on what it supports.
The syntax is:
Consult your friendly neighborhood MSDN documentation for more details.