0

os.path.getsize()可用于获取文件的大小。

但是数字代表什么:

  • 字节?
  • 位?
  • 兆字节?

另外,我确定会涉及一些舍入,因为它总是返回一个整数,它是向上舍入还是向下舍入?

4

2 回答 2

4

这是你要找的吗?(从这里

"""
os.path.getsize(path)
Return the size, in bytes, of path. Raise os.error if the file does not exist or is inaccessible.
"""
于 2013-09-24T09:08:32.377 回答
2

它以字节为单位返回大小,如此处找到的官方 Python 文档中所示

于 2013-09-24T09:09:48.070 回答