Upload Files to a particular Folder in Ruby On Rails 4 -
i using working on particular module in ruby on rails, want upload files particular folder. if it's possible, please share examples may me achieve functionality?
as @dharam mentioned. can use paperclip. working example can find here
if want specify folder path attachments should move. need write in model
has_attached_file :attachment, :path => ":rails_root/attachments/:id/:style/:basename.:extension"
after attachments seen in attachments folder in application root
Comments
Post a Comment