eg: def safe_read(path) return '' unless File.readable?(path) File.read(path) end
def safe_readlines(path) return [''] unless File.readable?(path) File.readlines(path) end