cmp(file_a, file_b) -> bool
[permalink][rdoc][edit]compare_file(file_a, file_b) -> bool
identical?(file_a, file_b) -> bool
-
ファイル file_a と file_b の内容が同じなら真を返します。
- [PARAM] file_a:
- ファイル名。
- [PARAM] file_b:
- ファイル名。
require 'fileutils' FileUtils.cmp('somefile', 'somefile') #=> true FileUtils.cmp('/dev/null', '/dev/urandom') #=> false