Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i've been using Paperclip, when deleting is done, it is just deleting the attachments, but the images saved in the file system is not being deleted.can anybody plz tell how to delete the images from the file system using paperclip itself.

the code i've been using is


has_attached_file :image_o_filename,
    :styles => {
      :tn => ["100x100#",:jpg ,:name => :tn],
      :w => ["640x480>",:jpg, :name => :w],
      :l_tn => ["200x150#",:jpg, :name => :l_tn]
    },
    :path => "/places/hotels/:image_pre_path/images/:basename_:style.:extension"

when i delete the photos from the view, images are getting deleted from the database but not from the file system with the above path, images remain without getting deleted. what might be the reason ??

and no errors generated in console also..

share|improve this question
1  
Please share your code - paperclip in it's default config handles file deletion of of the box. – Maciej Litwiniuk Aug 27 '12 at 10:11
Is your console displaying any errors about paperclip?, i think it may be permissions issue. – David Mauricio Aug 27 '12 at 16:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.