是否有一个内建函数,以字节为单位获取文件对象的大小?我看到有些人这样做:
def getSize(fileobject):
fileobject.seek(0,2) # move the cursor to the end of the file
size = fileobject.tell()
return size
file = open('myfile.bin', 'rb')
print getSize(file)
但从我使用Python的经验来看,它有很多帮助函数,所以我猜可能有一个内置的。