[Answered ]-How to specify an "upload to" path in a Form File Field in Django?

2👍

✅

You will have to process the file manually from request.FILES['formfieldname'] , this should provide a clear description for both cases (using the FileField in your model or manual handling from the request):
https://docs.djangoproject.com/en/1.8/topics/http/file-uploads/#basic-file-uploads

Leave a comment