Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following data is uploaded to my GAE application -

Picasa upload data

How can I

  1. get fields with files only
  2. get filenames of the uploaded files?
share|improve this question

2 Answers

up vote 1 down vote accepted
  1. get fields with files only

    import cgi
    
    values = self.request.POST.itervalues()
    files = [v for v in values if isinstance(v, cgi.FieldStorage)]
    
  2. get filenames of the uploaded files

    filenames = [f.filename for f in files]
    

Edit: corrected snippet, now tested :)

share|improve this answer
moraes, I am getting 'not indexable' error: File "/base/data/home/apps/picasa2vkontakte/1.352422470709739983/picasa2vkontakte.py"‌​, line 138, in post files_arguments.extend(v for v in values if isinstance(v, cgi.FieldStorage)) – LA_ Aug 9 '11 at 7:49
Sorry, I corrected the snippet. It is now tested. :) – moraes Aug 9 '11 at 8:12
Thanks, moraes. If I use this approach, how can I get size of the uploaded file? for single_file in files: len(single_file)/(1024.0*1024.0) returns not indexable error. And how to get content of the file to have it stored in datastore? photo_file.file = db.Blob(single_file)? (can not find any docs about files and their properties like .filename) – LA_ Aug 9 '11 at 9:34
They are FieldStorage instances, so contents = single_file.value. Get len of contents then. Docs: epydoc.sourceforge.net/stdlib/cgi.FieldStorage-class.html – moraes Aug 9 '11 at 9:39

Assuming the data is POSTed using a form, for #2, see Get original filename google app engine

For #1, you could iterate through the self.request.POST multidict and see anything that looks like a file. self.request.POST looks like this:

UnicodeMultiDict([(u'file_1', FieldStorage(u'file_1', u'filename_1')), (u'random_string_field', u'random_string_value')])

Hope that helps you out

-Sam

share|improve this answer
see anything that looks like a file - the question is how to identify that ;) – LA_ Aug 9 '11 at 6:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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