문제

In Ruby 1.8, I would call File.compare() from the "ftools" library to easily compare the contents of two files.

However, in Ruby 1.9, "ftools" is replaced by "fileutils", which doesn't have a "compare" method. What's the equivalent call?

도움이 되었습니까?

해결책

Ahh, the method has been renamed to compare_file in FileUtils.

There's also an alias of "cmp" in both versions.

다른 팁

Old question, but I just got here from google. identical? is available for those who like me prefer that coding style.

FileUtils.identical?(exp, act)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top