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()