It should be faster to put the uploaded files in the static folder and then access them directly via their static URL. However, note that in this case you cannot apply any access control to the files -- they will be publicly available. The purpose of the uploads folder and the download() function is to enable access control.
Anthony On Sunday, January 8, 2012 7:47:31 AM UTC-5, HYRY wrote: > > I want to know which way is faster for download upload files: > > 1. from download() in default.py > 2. put the upload files in static folder >

