Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > pathnameライブラリ > Pathnameクラス > to_s

instance method Pathname#to_s

to_s -> String[permalink][rdoc]
to_str -> String

パス名を文字列で返します。

to_str は、File.open などの引数にそのまま Pathname オブジェクトを 渡せるようにするために用意されています。

require 'pathname'

path = Pathname.new("/tmp/hogehoge")
File.open(path)