I looked at the Flask documentation, both the quick start guide and the file upload guide, and can't find anything about getting the file size. As I understand it, I am assigned the name of the file on the user's disk and the name of the input field containing the downloaded file.
Besides burning the file to disk and then checking the size with os.path.getsize, is there any way to get the size of the object file?
I do:
f.seek(0,SEEK_END) f.tell()
Should the right path be right?
mowwwalker
source share