# File lib/brakeman/checks/check_file_access.rb, line 74
  def temp_file_method? exp
    if call? exp
      return true if exp.call_chain.include? :tempfile

      params? exp.target and exp.method == :path
    end
  end