Rails.root 文件路径通配符

发布于 2024-11-18 02:30:37 字数 205 浏览 2 评论 0原文

这是我在 rake 任务中打开文件的代码:

  File.open(Rails.root.join("public/system/xmls/**/original/*.csv"),"r") do |file| 
  #etc

但它不匹配任何文件(存在三个可能的匹配)。第一个 ** 是一个具有 2 位数名称的文件夹。我哪里错了?

Here's my code in a rake task to open a file:

  File.open(Rails.root.join("public/system/xmls/**/original/*.csv"),"r") do |file| 
  #etc

but it's not matching any file (there are three possible matches). The first ** is a folder with a 2 digit name. Where am I going wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盛夏已如深秋| 2024-11-25 02:30:37

join 方法通常不会扩展 *** ,而是将它们作为文字放入。也许这就是问题所在。您想要的可能更像是这样:

Dir.glob(Rails.root.join("public/system/xmls/**/original/*.csv")).each do |path|
  File.open(path) do |file|
    # ...
  end
end

单独打开每个文件,您应该没问题。

The join method doesn't usually expand * and ** but puts them in as literals. Maybe this is the problem. What you want might be more like this:

Dir.glob(Rails.root.join("public/system/xmls/**/original/*.csv")).each do |path|
  File.open(path) do |file|
    # ...
  end
end

Open each file individually and you should be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文