1 Star 0 Fork 0

UID/go-common-func

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
env.go 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
UID 提交于 2024-01-19 17:34 . init...
package funcs
import (
"fmt"
"os"
)
// 环境变量 - 添加PATH, PATH不本应用运行目录下的子目录
func EnvAddPathFromRoot(path string) {
origPath := os.Getenv("path")
os.Setenv("path", fmt.Sprintf("%s\\%s;%s", Getwd(), path, origPath))
}
func Getwd() string {
var _pwd_, _ = os.Getwd()
pwd := _pwd_
return pwd
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/uid/go-common-func.git
git@gitee.com:uid/go-common-func.git
uid
go-common-func
go-common-func
v1.0.8

搜索帮助