gpt4 book ai didi

Ruby 在与源相同的目录中加载配置(yaml)文件

转载 作者:数据小太阳 更新时间:2023-10-29 06:23:25 25 4
gpt4 key购买 nike

在 HOME/path_test/我有:

load_test.rb:

require 'yaml'
cnf = YAML::load(File.open('config.yml'))
puts cnf['Hello']

配置文件:

Hello: world!!!

当在 HOME/path_test/中时,我得到了预期的结果:

-bash-3.2$ ruby load_test.rb 
world!!!

当在 HOME/(cd ..) 我得到

-bash-3.2$ ruby path_test/load_test.rb 
path_test/load_test.rb:3:in `initialize': No such file or directory - config.yml (Errno::ENOENT)
from path_test/load_test.rb:3:in `open'
from path_test/load_test.rb:3:in `<main>'

这是正确的行为,但不是我所希望的:)

有没有办法加载相对于源文件的 .yml 文件,而不是相对于当前工作目录??

解决方案(load_Test.rb):

require 'yaml'
fn = File.dirname(File.expand_path(__FILE__)) + '/config.yml'
cnf = YAML::load(File.open(fn))
puts cnf['Hello']

最佳答案

您应该通过以下方式获取当前文件的路径:

cnf = YAML::load_file(File.join(File.dirname(File.expand_path(__FILE__)), 'config.yml'))

编辑:

从 Ruby 2.0 开始,您可以简化它并使用:

cnf = YAML::load_file(File.join(__dir__, 'config.yml'))

关于Ruby 在与源相同的目录中加载配置(yaml)文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8878389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com