instead of using chunks, you can use:

 file.seek(0)
 file_data = file.read()
 file.close()

 ex_function()

I think the reason tutorial use chunks is because "if the uploaded
file is huge it can overwhelm your system if you try to read it into
memory. You'll probably want to use chunks() instead; "




On May 10, 4:16 pm, tm <tmugav...@gmail.com> wrote:
> Does anyone know how to wait for a file upload to finish?  I do this
> section of code like the docs:
>
> def handle_uploaded_file(f):
>     ...
>     for chunk in f.chunks():
>         destination.write(chunk)
>      ....
>      ex_function()
>      ....
>
> but while a large file is writing out the code continues after this
> call straight to ex_function().  I need to wait until the file is
> completely uploaded until I call that function.  Any help would be
> greatly appreciated.
>
> Thanks, T

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to