python3判断文件是否为空
时间: 2023-09-12 21:10:12 浏览: 133
Python3 判断子文件夹是否为空文件夹,为空则将其重命名
5星 · 资源好评率100%
可以使用 os.path 模块中的 getsize() 函数来判断文件大小是否为0,如果为0则说明文件为空。
以下是判断文件是否为空的 Python 代码示例:
```
import os
def is_file_empty(file_path):
return os.path.exists(file_path) and os.path.getsize(file_path) == 0
if is_file_empty('file.txt'):
print('文件为空')
else:
print('文件不为空')
```
其中,`file_path` 是需要判断的文件路径。如果文件存在且大小为0,则返回 True,否则返回 False。
阅读全文