identical?(file1, file2) -> bool
[permalink][rdoc][edit]-
file1 と file2 が同じファイルを指している時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
ruby 1.8.3 以前ではKernel.#test(?-, file1, file2)を使ってください。
open("a", "w") {} p File.identical?("a", "a") #=> true p File.identical?("a", "./a") #=> true File.link("a", "b") p File.identical?("a", "b") #=> true File.symlink("a", "c") p File.identical?("a", "c") #=> true open("d", "w") {} p File.identical?("a", "d") #=> false
- [PARAM] file1:
- ファイル名を表す文字列か IO オブジェクトを指定します。
- [PARAM] file2:
- ファイル名を表す文字列か IO オブジェクトを指定します。
- [EXCEPTION] IOError:
- 指定された IO オブジェクト file1, file2 が既に close されていた場合に発生します。