るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.076秒)
トップページ > クエリ:String#tr[x] > クエリ:escape_html[x] > クエリ:seed[x] > クラス:Tempfile[x]

別のキーワード

  1. matrix tr
  2. string tr_s
  3. string tr_s!
  4. string tr!
  5. html4tr element_init

ライブラリ

検索結果

Tempfile#path -> String | nil (202.0)

テンポラリファイルのパス名を返します。

...テンポラリファイルのパス名を返します。

Tempfile
#close! を実行後だった場合にはnilを返します。

require "tempfile"
tf = Tempfile.new("hoo")
p tf.path # => "/tmp/hoo.10596.0"
tf.close!
p tf.path # => nil...