OSX 相当于 ShellExecute?
我有一个 C++ 应用程序,正在从 Win32 移植到 OSX。 我希望能够启动任意文件,就像用户打开它们一样。 在 Windows 上使用 ShellExecute 这很容易。 如何在 Mac 上完成同样的事情?
谢谢!
I've got a C++ app that I'm porting from Win32 to OSX. I'd like to be able to launch arbitrary files as if the user opened them. This is easy on windows using ShellExecute. How do I accomplish the same thing on the Mac?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在任何 C++ 应用程序中调用
system();
。 在 OSX 上,您可以使用 open 命令启动事物就像点击它们一样。从打开的文档中:
总而言之,它看起来像:
You can call
system();
in any C++ application. On OSX, you can use the open command to launch things as if they were clicked on.From the documentation for open:
All together, it would look like:
如果您使用可可,另一个建议是:
NSWorkspace
中还有其他类似的方法。 例如,要打开应用程序或 URL:通过
[NSWorkspace sharedWorkspace]
进行操作可以为您提供比标准 Csystem()
调用更多的控制权。编辑:请注意,您可以使用 Objective-C++ 将C++代码与Objective-C代码混合,从而调用cocoa方法。
Another suggestion if you're working with cocoa:
There are other similar methods in
NSWorkspace
as well. For example to open an application or a URL:Working through
[NSWorkspace sharedWorkspace]
can give you a bit more control than the standard Csystem()
call.Edit: Note that you can use Objective-C++ to mix C++ code with Objective-C code and thereby call cocoa methods.
您可以简单地使用 system(); 功能。 例如,假设您想将扩展坞放在屏幕的一角。
您可以简单地说:
就是这么简单。
希望我有帮助:)
You can simply use the system(); function. For example, say you wanted to put your dock into the corner of the screen.
You can simply put:
It's that easy.
Hope I helped :)