Hi. My gems: carrierwave, whenever I would like to remove from server photos uploaded 30 days ago. I should use runner ? every 1.day, :at => ''4:30 am'' do> runner "MyPhotoModel.remove_after_30_days" > end >How to remove files .jpg from server using runner? Should I remove records in photo table?? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/Da4_-1qEodsJ. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Walter Lee Davis
2012-Feb-08 17:33 UTC
Re: How should I remove old photo files usinh whenever gem
On Feb 7, 2012, at 7:45 PM, regedarek wrote:> Hi. > My gems: carrierwave, whenever > I would like to remove from server photos uploaded 30 days ago. > > I should use runner ? > > every 1.day, :at => ''4:30 am'' do > runner "MyPhotoModel.remove_after_30_days" > end > > How to remove files .jpg from server using runner? > > Should I remove records in photo table??I haven''t used CarrierWave yet, but many of the other file attachment gems delete the underlying file when the the corresponding object is destroyed. Try this in console -- Photo.first.destroy Then look in your file folder to see if the matching file is actually gone. Walter -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.