golang 获取当前执行程序的路径。

golang 可以使用下面的函数获取当前执行程序的路径。

 

func getCurrentPath() string {
    if ex, err := os.Executable(); err == nil {
        return filepath.Dir(ex)
    }
    return "./"
}

 

posted on 2022-05-31 15:04  星河赵  阅读(2438)  评论(0编辑  收藏  举报

导航