在 Go 中获取当前进程(可执行文件)名称?
我在这里寻找的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
C 中的传统
argv[0]
在中可用 Go 中的 >os.Args[0]
。 flags 包只是处理切片 os.Args[1:]The traditional
argv[0]
in C is available inos.Args[0]
in Go. The flags package simply processes the sliceos.Args[1:]
更好的方法如下:
这将仅显示应用程序名称并为您删除路径。
A better way as follows:
This will present only the application name and remove the path for you.
从 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 alsoos.Args[0]
. One important distinction is thatos.Executable()
is guaranteed to return an absolute path.