The following data is uploaded to my GAE application -

How can I
- get fields with files only
- get filenames of the uploaded files?
|
The following data is uploaded to my GAE application -
How can I
|
|||
|
|
Edit: corrected snippet, now tested :) |
|||||||||
|
|
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 |
|||
|