PCv5/app/utils/filesize.py

10 lines
186 B
Python

import os
def filesize(file):
"""Return the filesize. Save in /tmp and delete it when done"""
file.seek(0, os.SEEK_END)
size = file.tell()
file.seek(0)
return size