How can I get the size of a TemporaryFile in python?
本问题已经有最佳答案,请猛点这里访问。
目前当我写信给一个临时的:
1 2 3 4 5 6 7 8 | import tempfile a = tempfile.TemporaryFile() a.write(...) # The only way I know to get the size a.seek(0) len(a.read()) |
有更好的方法吗?
1 2 3 4 5 | import tempfile a = tempfile.TemporaryFile() a.write('abcd') a.tell() # 4 |
您可以使用
1 | os.stat(a.name).st_size |