Ruby 2.1.0 リファレンスマニュアル > ライブラリ一覧 > tempfileライブラリ > Tempfileクラス > close!

instance method Tempfile#close!

close! -> nil[permalink][rdoc]

テンポラリファイルをクローズし、すぐに削除します。

require "tempfile"
tf = Tempfile.open("bar")
path = tf.path
tf.close!
p FileTest.exist?(path) # => false