Don’t do this:

  <% if File.exists?(model.path) %>
    ...
  <% end %>

Do this instead:

  <% if model.file_exists? %>
    ...
  <% end %>