I want to change the WordPress comments file

You can change the URL for the action of the comment form like this:

add_filter( 'comment_form_defaults', 'wpse316762_comment_form_defaults' );
function wpse316762_comment_form_defaults( $defaults ) {
  $defaults[ 'action' ] = site_url( '/error.php' );
  return $defaults;
}