os.path.filesize()
时间: 2023-12-07 13:39:24 浏览: 89
文件夹大小
很抱歉,os模块中没有os.path.filesize()函数。如果您想获取文件大小,可以使用os.path.getsize()函数。该函数接受一个文件路径作为参数,并返回该文件的大小(以字节为单位)。
以下是一个示例代码:
```python
import os
file_path = 'example.txt'
file_size = os.path.getsize(file_path)
print(f'The size of {file_path} is {file_size} bytes.')
```
阅读全文