我正在尝试比较 2 个文件。如果只出现 1 个文件,它将创建一个副本。那么是否可以在使用时重新调用该方法begin..rescue..end
?
def differ()
begin
file_today = read_file("/etc/hosts.deny")
file_yesterday = read_file("/etc/hosts.deny_old")
content = Diffy::Diff.new(file_yesterday, file_today)
rescue
copy_log
differ #call itself?!O_o Well, after the copy has been created!
end
return content
end
它是“不同的#call 本身?!O_o 好吧,在创建副本之后!” 我不能去上班。