instance method Tempfile#close!
close! -> nil-
テンポラリファイルをクローズし、すぐに削除します。
require "tempfile" tf = Tempfile.open("bar") path = tf.path tf.close! p FileTest.exist?(path) # => false
class Tempfile
close! -> nilテンポラリファイルをクローズし、すぐに削除します。
require "tempfile"
tf = Tempfile.open("bar")
path = tf.path
tf.close!
p FileTest.exist?(path) # => false