gpt4 book ai didi

macos - 以编程方式重新启动 OSX 应用程序

转载 作者:可可西里 更新时间:2023-11-01 00:37:40 24 4
gpt4 key购买 nike

我需要重新启动我的应用程序,以防我重新加载需要从头开始的内容。我试过了

  let path = NSBundle.mainBundle().resourcePath!.stringByDeletingLastPathComponent.stringByDeletingLastPathComponent
let task = NSTask()
task.launchPath = "open"
task.arguments = [path]
task.launch()
exit(0)

但我在打开

时收到错误消息

launch path not accessible

最佳答案

虽然问题本身微不足道(忘记了路径),但我留下了问题和答案,以防其他人需要相同的功能。

let path = NSBundle.mainBundle().resourcePath!.stringByDeletingLastPathComponent.stringByDeletingLastPathComponent
let task = NSTask()
task.launchPath = "/usr/bin/open"
task.arguments = [path]
task.launch()
exit(0)

编辑(Sw3 的每日 Swift 语法更改;也适用于 Sw4):

let url = URL(fileURLWithPath: Bundle.main.resourcePath!)
let path = url.deletingLastPathComponent().deletingLastPathComponent().absoluteString
let task = Process()
task.launchPath = "/usr/bin/open"
task.arguments = [path]
task.launch()
exit(0)

关于macos - 以编程方式重新启动 OSX 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29847611/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com