I have a form in my django app where users can upload files.
How can i set a limit to the uploaded file size so that if a user uploads a file larger than my limit the form won't be valid and it will throw an error?
|
|
|||||||||
|
|
Take a look at this snippet: http://www.djangosnippets.org/snippets/1303/ |
|||
|
|
|
You can use this snippet formatChecker. What it does is
First. Create a file named formatChecker.py inside the app where the you have the model that has the FileField that you want to accept a certain file type. This is your formatChecker.py:
Second. In your models.py, add this:
Then instead of using 'FileField', use this 'ContentTypeRestrictedFileField'. Example:
You can change the value of 'max_upload_size' to the limit of file size that you want. You can also change the values inside the list of 'content_types' to the file types that you want to accept. |
|||||
|
|
I believe that django form receives file only after it was uploaded completely.That's why if somebody uploads 2Gb file, you're much better off with web-server checking for size on-the-fly. See this mail thread for more info. |
|||||||||
|
|
Just a short note on the snippet that was included in this thread:
It was very usefull, however it's including a few minor mistakes. More robust code should look like this:
There are just a few improvements: First of all I'm detecting if the file field is empty (None) - without it, Django will cast an exception in web browser. Next is type casting in int(settings.MAX_UPLOAD_SIZE), because that setting value is a string. Strings cannot be used for comparing with numbers. Last but not least, the unicode 'u' prefix in ValidationError function. Thank you very much for this snippet! |
|||
|
|