I have tried:

self.data['uploaded_file'].content_type

However, this gives an error that says the object lacks a content_type attribute.

Any ideas as to why? Thank you.

What is the best way to verify file type in Django forms?

link|improve this question

0% accept rate
feedback

2 Answers

The content_type attribute is only present on the UploadedFile instances contained in request.FILES; you will need to get the content type from that, or use magic to get it from the raw file data.

link|improve this answer
Thanks, then what is the best way to verify file type in Django forms? – user534017 Dec 26 '11 at 5:50
feedback

How could you tell a file is binary file or text or some other stuff? Perhaps using the file extension is a way, but not always makes sense.

link|improve this answer
Right, I don't think that file extension checking is reliable. – user534017 Dec 26 '11 at 16:59
feedback

Your Answer

 
or
required, but never shown

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