> > This makes me think, is there any way so the stored file is accessed > directly via URL, something like > http://mysite.com/myapp/uploads/myfilename.jpg?
This should customize the uploaded files. - Retrieve the file db record - Change the upload field to whatever name you need - Rename the file with the Python os library The name change is a security measure: "... renames uploaded files (to prevent directory traversal attacks) ..." Note that the download() function restores the original filename on client downloads --