Detect MIME type of uploaded file in Ruby

后端 未结 7 996
刺人心
刺人心 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

    0 讨论(0)
提交回复
热议问题