Do I have to specify a MIME type if the uploaded file has no extension? In other words is there a default general MIME type?

link|improve this question

feedback

2 Answers

up vote 21 down vote accepted

You can use application/octet-stream for unknown types.

RFC 2046 states in section 4.5.1:

The "octet-stream" subtype is used to indicate that a body contains arbitrary binary data.

link|improve this answer
feedback

I prefer application/unknown, but result will be surely the same as application/octet-stream

link|improve this answer
1  
Is there a standard which allows using application/unknown instead of application/octet-stream? – Hendrik Brummermann May 21 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.