标签: file temp
您好我想知道如何在ruby中创建临时文件映像(png),因为tempfile只会获取一个随机文件名,但它没有扩展文件。
答案 0 :(得分:5)
check the documentation!
# Use the Array form to enforce an extension in the filename: file = Tempfile.new(['hello', '.jpg']) file.path # => something like: "/tmp/foo2843-8392-92849382--0.jpg"