如何从Rails写入临时文件

时间:2012-08-31 10:35:29

标签: ruby-on-rails

如何从Rails应用程序写入临时文件(在计算机的临时文件夹中),我正在使用Spreadsheet::Workbook.new,我希望将内容写入临时文件

1 个答案:

答案 0 :(得分:2)

您可以使用Ruby的Tempfile

file = Tempfile.new('prefix')

或用块:

Tempfile.new('prefix') do |file|
  # do the work with the file
end