Detect MIME type of uploaded file in Ruby

后端 未结 7 997
刺人心
刺人心 2020-12-02 09:45

Is there a bullet proof way to detect MIME type of uploaded file in Ruby or Ruby on Rails? I\'m uploading JPEGs and PNGs using SWFupload and content_type is alw

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-02 10:37

    You can use

    Mime::Type.lookup_by_extension(extention_name)

    Thanks

提交回复
热议问题