check_files()
Check that the files on the command line exist
# File lib/rdoc/options.rb, line 630 def check_files @files.each do |f| stat = File.stat f raise RDoc::Error, "file '#{f}' not readable" unless stat.readable? end end