判断文件是否为空
时间: 2023-07-24 22:42:17 浏览: 123
判断文件是否为空可以通过以下方法实现:
1. 获取文件大小,如果大小为0,则文件为空。
```python
import os
file_path = "path/to/your/file"
if os.path.getsize(file_path) == 0:
print("File is empty")
else:
print("File is not empty")
```
2. 读取文件内容,如果内容为空,则文件为空。
```python
file_path = "path/to/your/file"
with open(file_path, "r") as f:
content = f.read()
if not content:
print("File is empty")
else:
print("File is not empty")
```
注意:对于大文件,第二种方法可能会耗费较长时间和大量内存。建议使用第一种方法。
阅读全文