るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. _builtin filetest
  2. filetest size?
  3. filetest file?
  4. filetest size
  5. filetest exist?

ライブラリ

クラス

検索結果

Tempfile#close! -> nil (63340.0)

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

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

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