Hello everybody, I created an upload form with the help of the docs. http://docs.djangoproject.com/en/dev/topics/http/file-uploads/#topics-http-file-uploads
But the handle_uploaded_file() bugs me a little bit. I set MEDIA_ROOT (MR) in the settings.py to an existing directory. I thought that file uploads work together with MR but in the docs the file is saved "manually" on the disk. Is there no django method which saves the file automatically with a given name on the disk? The result should be something like this: (with the file saved at MEDIA_ROOT/myfile.jpg): def def handle_uploaded_file(f): f.save("myfile.jpg") Instead of: def handle_uploaded_file(f): destination = open('some/file/name.txt', 'wb+') for chunk in f.chunks(): destination.write(chunk) destination.close() --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---