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