Hi. I'm developing a file uploader.And I need to upload large files(over 100MB). But on django's admin interface, it uses memory too much .Then I'm trying to write a new interface.
like... if request.POST: import os.path path = os.path.join(MEDIA_ROOT, request.FILES['file_file']['filename']) f = open(path, 'wb') for c in request.FILES['file_file']['content']: f.write(c) f.close() But it also uses memory too much... What's the way to resolve this problem? Pear eater --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---