标签: ruby-on-rails
如何从Rails应用程序写入临时文件(在计算机的临时文件夹中),我正在使用Spreadsheet::Workbook.new,我希望将内容写入临时文件
Spreadsheet::Workbook.new
答案 0 :(得分:2)
您可以使用Ruby的Tempfile:
Tempfile
file = Tempfile.new('prefix')
或用块:
Tempfile.new('prefix') do |file| # do the work with the file end