Get original filename google app engine

后端 未结 2 1895
旧巷少年郎
旧巷少年郎 2021-01-19 17:16

When receiving a file upload on google app engine, the example assumes you\'re receiving a .png. However you only konw what the type of the image is by the extension on the

相关标签:
2条回答
  • 2021-01-19 17:46

    The filename of the file that is being uploaded can be determined by looking at the filename property of the variable that holds the file. For example, let's say that your form has a field named content:

    <input type="file" name="content" />
    

    Inside your Handler, you could find the name of the file with:

    filename = self.request.POST["content"].filename
    
    0 讨论(0)
  • 2021-01-19 18:03

    It seems that the newly introduced BlobStore has direct support for original filename in the blob's properties. http://code.google.com/appengine/docs/python/blobstore/blobinfoclass.html#BlobInfo_filename

    You will need to register a credit card with App Engine to be able to use the BlobStore in production though, even if you don't plan on exceeding the free quotas.

    0 讨论(0)
提交回复
热议问题