找出 Foundation 可执行文件中的工作文件夹?

发布于 2024-09-11 10:54:18 字数 93 浏览 4 评论 0原文

我有一个控制台程序,它链接到 Mac 上的 Foundation 框架。如何找到可执行文件所在的文件夹

I have a console program which is linked to the Foundation framework on Mac. How do I find out the folder the executable is in?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝梦月影 2024-09-18 10:54:18

即使该工具不在捆绑包中,您仍然可以使用一些 NSBundle 方法。例如:

NSString * binaryPath = [[NSBundle mainBundle] executablePath];
NSString * executableFolder = [binaryPath stringByDeletingLastPathComponent];

Even though the tool is not in a bundle, you can still use some of the NSBundle methods. For example:

NSString * binaryPath = [[NSBundle mainBundle] executablePath];
NSString * executableFolder = [binaryPath stringByDeletingLastPathComponent];

[[NSBundle mainBundle]bundlePath] 怎么样?

What about [[NSBundle mainBundle] bundlePath]

掩耳倾听 2024-09-18 10:54:18

传递给 main() ( argv[0] ) 的第一个参数是可执行文件本身的路径。如果您编写了上述控制台程序,您就可以通过这种方式获得它。

The first argument passed to main() ( argv[0] ) is the path to the executable itself. If you wrote said console program, you could get it that way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文