python 判断文件是否为空
时间: 2023-12-20 12:04:33 浏览: 22
Python 中判断列表是否为空的方法
可以使用os.path模块中的getsize()函数来获取文件的大小,如果文件大小为0,则可以判断该文件为空。
示例代码如下:
```python
import os
filename = 'example.txt'
if os.path.getsize(filename) == 0:
print(f"{filename} is empty.")
else:
print(f"{filename} is not empty.")
```
其中,'example.txt'是要判断的文件名,可以根据实际情况进行修改。如果文件为空,则输出"example.txt is empty.",否则输出"example.txt is not empty."。
阅读全文