るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.090秒)

別のキーワード

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

クラス

検索結果

Tempfile#path -> String | nil (203.0)

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

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

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

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