无法读取没有绝对路径的.env文件。

huangapple go评论74阅读模式
英文:

Can't read .env file without absolute path

问题

当我尝试读取.env文件时,如果不使用绝对路径,它无法正常工作。

func init() {
	err := godotenv.Load(".env") //<--失败
    //err := godotenv.Load("./.env") //<--失败
    //err := godotenv.Load("/home/peter/Documents/tests/configuration/.env") //<--成功
	if err != nil {
		panic(err)
	}
	Config = GetConfig()
}

我得到了panic: open .env: no such file or directory的错误,但是文件确实存在。

$ ls -a
.  ..  config.go  .env

有什么线索吗?

英文:

When I try to read the .env file it does not work without using the absolute path.

func init() {
	err := godotenv.Load(&quot;.env&quot;) //&lt;--fails
    //err := godotenv.Load(&quot;./.env&quot;) //&lt;--fails
    //err := godotenv.Load(&quot;/home/peter/Documents/tests/configuration/.env&quot;) //&lt;--works
	if err != nil {
		panic(err)
	}
	Config = GetConfig()
}

I get panic: open .env: no such file or directory
But the file is there

$ ls -a
.  ..  config.go  .env

Any clue?

答案1

得分: 1

可能的问题是,您运行可执行文件的目录与.env文件所在的目录不同。您能确认一下吗?

英文:

A potential problem is that the directory you are running the executable from is different than the directory of which the .env file is located. Could you verify this?

huangapple
  • 本文由 发表于 2022年12月16日 07:34:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/74818704.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定