I was looking at the django docs for file uploads in a form and I don't quite understand the arguments for the open function here. All I want to do is tell the handler the directory on my computer where the uploaded file should be saved. I would guess that's what the first argument is for but why is it a text file? And I'm guessing 'wb+' has something to do with the file type? What would I write if I'm expecting a jpeg?

def handle_uploaded_file(f):
    destination = open('some/file/name.txt', 'wb+')
    for chunk in f.chunks():
        destination.write(chunk)
    destination.close()
link|improve this question

80% accept rate
feedback

1 Answer

From the documentation:

Modes 'r+', 'w+' and 'a+' open the file for updating (note that 'w+' truncates the file). Append 'b' to the mode to open the file in binary mode, on systems that differentiate between binary and text files; on systems that don’t have this distinction, adding the 'b' has no effect.

So, 'wb+' opens a file for writing in binary mode (the extension of the given name does not matter there, it could be anything), creating it if it was not already present.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.