栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python 判断文件或者文件夹是否为空

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python 判断文件或者文件夹是否为空

1. 判断文件是否为空

os.path.getsize() 返回文件的字节数,如果为 0,则代表空。

import os
 
file = "C:UsersYANGDesktop0520211106__65.txt"
if not os.path.getsize(file):
    os.remove(file)

2. 判断文件 / 文件夹是否存在

os.path.exists() 方法用于检验文件 / 文件夹是否存在。

import os
path = "/C:UsersYANGDesktop05"
file = "C:UsersYANGDesktop0520211106__65.txt"
 
if not os.path.exists(path):
    os.path.makedirs(path)
 
if not os.path.exists(file):
    pass

先判断文件是否存在,如果存在则判断是否为空:

 

# 文件是否存在,以及是否为空
file = "/home/abc/test_file.txt"
if os.path.exists(file):
    print(file, " is exists!")
    sz = os.path.getsize(file)
    if not sz:
        print(file, " is empty!")
    else:
        print(file, " is not empty, size is ", sz)
else:
    print(file, " is not exists!")

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/715524.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号