赞
踩
点击关注,我们共同每天进步一点点!
思路1: 获取文件大小, 验证文件大小是否为0(可以使用os库或pathlib库)
思路2: 读取文件的第一个字符, 验证第一个字符是否存在
# -*- coding: utf-8 -*-# @Time : 2020/11/23 12:21# @Author : chinablueimport osdef is_empty_file_1(file_path: str): assert isinstance(file_path, str), f"file_path参数类型不是字符串类型: {type(file_path)}" assert os.path.isfile(file_path), f"file_path不是一个文件: {file_path}" return os.path.getsize(file_path) =
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。