[Answered ]-Django FileField upload

2👍

No, you do not need to do a handle_uploaded_file.
When you save the object (form.save) Django already does this for you.

Look this:
https://github.com/django/django/blob/master/django/db/models/fields/files.py#L270-276

Leave a comment