I’d like to use GAE to allow a few users to upload files and later retrieve them. Files will be relatively small (a few hundred KB), so just storing stuff as a blob should work. I haven’t been able to find any examples of something like this. There are a few image uploading examples out there but I’d like to be able to store word documents, pdfs, tiffs, etc. Any ideas/pointers/links? Thanks!
Share
The same logic used for image uploads apply for other archive types. To make the file downloadable, you add a
Content-Dispositionheader so the user is prompted to download it. A webapp simple example:(untested code, but you get the idea 🙂