go获取当前执行的位置程序
Posted wujf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go获取当前执行的位置程序相关的知识,希望对你有一定的参考价值。
func getCurrentPath() string { _, filename, _, ok := runtime.Caller(1) var cwdPath string if ok { cwdPath = path.Join(path.Dir(filename), "") // the the main function file directory } else { cwdPath = "./" } return cwdPath }
以上是关于go获取当前执行的位置程序的主要内容,如果未能解决你的问题,请参考以下文章