如何获取 NSTask 进程的子进程?
如果我使用启动的 NSTask 对象,是否可以获取任务调用的进程?例如,终端执行此操作以将其显示在标题栏中:
如何获取 < 调用的进程code>NSTask 的流程?
If I use an NSTask
object which is launched, is it possible to get the process invoked by the task? For example, Terminal does this to show it in the title bar:
How can I get the process invoked by the NSTask
's process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以访问
[task launchPath]
,然后分析您获得的字符串。You may access to
[task launchPath]
and then analyze the string you get.