Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

An app uses paperclip to handle file uploads for user avatars.

Paperclip currently deletes old files when new ones are files, however, I wish for the users to see a history of what they have uploaded.

Is there a way to prevent paperclip from deleting old files when new files are uploaded?

Thank you in advance,

share|improve this question

1 Answer

up vote 0 down vote accepted

has_attached_file has a :keep_old_files options you can set. For example:

has_attached_file :avatar, :keep_old_files => true

Source: http://rubydoc.info/gems/paperclip/Paperclip/ClassMethods:has_attached_file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.