るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.050秒)
トップページ > バージョン:2.2.0[x] > クエリ:open[x] > クエリ:file[x] > クエリ:close![x]

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file open
  4. file ctime
  5. file chown

ライブラリ

クラス

検索結果

Tempfile#close! -> nil (63340.0)

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

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

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