Go 获取当前项目路径 支持go run go build 两种方式
摘要:
Go 获取当前项目路径,通过 os.Executable() go run 和go build是不同的路径。 提供通用的解决方法如下: package main import ( "fmt" "log" "os" "path" "path/filepath" "runtime" "strings" 阅读全文
posted @ 2022-03-22 10:59 星河赵 阅读(1356) 评论(0) 推荐(0) 编辑