Rails - 以可移植的方式创建临时文件

发布于 2024-08-18 16:03:34 字数 309 浏览 8 评论 0原文

我的 Rails 应用程序在 Ubuntu 服务器计算机上运行。

我需要创建临时文件,以便将它们“馈送到”第二个独立应用程序(我将为此使用 rake 任务,以防需要此信息)

我的问题是:创建临时字段的最佳方法是什么在 Rails 应用程序上?

因为我在 ubuntu 中,所以我可以在 /tmp/whatever 上创建它们,但它们只能在 Linux 中工作。

我希望我的应用程序尽可能便携 - 这样它就可以安装在 Windows 机器上马克,如果需要的话。

有什么想法吗?

多谢。

My rails application runs on a Ubuntu server machine.

I need to create temporary files in order to "feed" them to a second, independent app (I'll be using rake tasks for this, in case this information is needed)

My question is: what is the best way of creating temporary fields on a rails application?

Since I'm in ubuntu, I could create them on /tmp/whatever, but what would work only in linux.

I'd like my application to be as portable as possible - so it can be installed on Windows machines & mac, if needed.

Any ideas?

Thanks a lot.

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

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

发布评论

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

评论(2

∞觅青森が 2024-08-25 16:03:34

tmp/ 绝对是放置文件的正确位置。

我发现在该文件夹上创建文件的最佳方法是使用 ruby 的临时文件库

代码如下所示:

require 'tempfile'

def foo()
  # creates a temporary file in tmp/
  Tempfile.open('prefix', Rails.root.join('tmp') ) do |f|
    f.print('a temp message')
    f.flush
    #... do more stuff with f
  end
end

我喜欢这个解决方案,因为:

  • 它自动生成随机文件名(您可以提供前缀)
  • 当不再使用文件时,它会自动删除文件。例如,如果在 rake 任务上调用,则文件将在 rake 任务结束时被删除。

tmp/ is definitively the right place to put the files.

The best way I've found of creating files on that folder is using ruby's tempfile library.

The code looks like this:

require 'tempfile'

def foo()
  # creates a temporary file in tmp/
  Tempfile.open('prefix', Rails.root.join('tmp') ) do |f|
    f.print('a temp message')
    f.flush
    #... do more stuff with f
  end
end

I like this solution because:

  • It generates random file names automatically (you can provide a prefix)
  • It automatically deletes the files when they are no longer used. For example, if invoked on a rake task, the files are removed when the rake task ends.
断肠人 2024-08-25 16:03:34

Rails 应用程序也有自己的 tmp/ 目录。我想它总是可用的,因此是使用和保持应用程序可移植性的一个很好的选择。

Rails apps also have their own tmp/ directory. I guess that one is always available and thus a good candidate to use and keep your application portable.

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