在 Go 中获取当前进程(可执行文件)名称?

发布于 2024-10-15 00:00:24 字数 208 浏览 14 评论 0原文

我在这里寻找的是 C 的 argv[0] 的等价物。

flag 包仅允许访问命令行参数,但不能访问可执行文件名称。

虽然可以使用 Getpid() 获取进程,但我还没有找到可以访问整个命令行的东西。 syscall 命令 GetCommandLine() 似乎仅在 Windows 上可用。

What I am looking for here is the equivalent of C's argv[0].

The flag package only gives access to command line arguments, but not the executable name.

While one can get the process with Getpid(), I haven't found something that will give me access to the whole command line. The syscall command GetCommandLine() seems only to be available on Windows.

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

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

发布评论

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

评论(3

仲春光 2024-10-22 00:00:24

C 中的传统 argv[0]可用 Go 中的 >os.Args[0] 。 flags 包只是处理切片 os.Args[1:]

The traditional argv[0] in C is available in os.Args[0] in Go. The flags package simply processes the slice os.Args[1:]

北座城市 2024-10-22 00:00:24

更好的方法如下:

filename := filepath.Base(os.Args[0])

这将仅显示应用程序名称并为您删除路径。

A better way as follows:

filename := filepath.Base(os.Args[0])

This will present only the application name and remove the path for you.

零度℉ 2024-10-22 00:00:24

从 Go 1.8 开始,答案是 os.Executable()。与其他语言类似,也有os.Args[0]。一个重要的区别是 os.Executable() 保证返回绝对路径。

Since Go 1.8, the answer is os.Executable(). Similar to other languages, there is also os.Args[0]. One important distinction is that os.Executable() is guaranteed to return an absolute path.

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