如何使用 Rake 为 Rails 项目创建目录结构

发布于 2024-10-23 18:17:54 字数 442 浏览 5 评论 0原文

我有一个 Rails 3 应用程序,需要创建一些目录。我想要一个 rake 任务,我可以运行它来执行此操作,作为一种初始化过程。基本上我想做:rake app:create_dirs或类似的事情。我尝试使用“目录”命令,但它们似乎仅适用于 rake 中的依赖项。有什么想法可以很好地做到这一点吗?我的目录结构需要如下所示:

public/content/0/0

public/content/0/1

public/content/0/2

...

public/content/1/0

public/content/1/1

...

public/content/n/m

其中 n0..9m0..9 >

感谢您的任何建议。

I have a Rails 3 app which needs to have some directories created. I'd like to have a rake task which I can run to do this as a sort of initialization procedure. Basically I'd like to do: rake app:create_dirs or something similar. I tried using the "directory" commands but they seem to be only for dependencies in rake. Any ideas how to do this nicely? My dir structure needs to look like this:

public/content/0/0

public/content/0/1

public/content/0/2

...

public/content/1/0

public/content/1/1

...

public/content/n/m

where n is 0..9 and m is 0..9

Thanks for any advice.

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

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

发布评论

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

评论(1

花之痕靓丽 2024-10-30 18:17:54

像这样的东西应该有效,我不知道你的确切应用程序,但要点是研究 FileUtils#mkdir_p

require 'fileutils'

(0..9).each do |n|
  (0..9).each do |m|
    FileUtils.mkdir_p("#{Rails.public_path}/content/#{n}/#{m}")
  end
end

Something like this should work, I don't know your exact application but the main point is to look into FileUtils#mkdir_p

require 'fileutils'

(0..9).each do |n|
  (0..9).each do |m|
    FileUtils.mkdir_p("#{Rails.public_path}/content/#{n}/#{m}")
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文