python判断文件是否存在

By 刘志军 , 2020-06-07, 分类: qa

python

判断文件或目录是否存在

import os
if os.path.exists("/path/to/file")
    #  存在
    pass
else:
    # 不存在
    pass

判断目录是否存在

import os
if os.path.isdir("/path"):
    #  存在
    pass
else:
    # 不存在
    pass

判断文件是否存在

import os
if os.path.isfile("/path"):
    #  存在
    pass
else:
    # 不存在
    pass

如果使用 python3, 还可以使用 pathlib 模块

>>> from pathlib import Path
>>> f = Path("./pip")
>>> f.exists()  # 文件或目录是否存在
True
>>> f.is_file()  # 文件是否存在
False
>>> f.is_dir()  # 目录是否存在
True

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2024-03-04
Python中的 if __name__ == '__main__' 是什么?
2024-03-04
用 Python 破解隔壁老王家的 Wi-Fi 密码,刺激!
2023-06-12
Python3.12新特性
2023-04-17
Python虚拟环境使用
2023-04-15
如何删除macOS系统默认的Python2.7并替换成最新版python3.11
2022-12-09
python 中return和yield有什么区别
2022-08-17
如何利用多态干掉 if else 语句
2022-07-22
10个python初学者常犯的错误
2022-06-10
flask-siwadoc 支持openapi 分组功能
2022-06-10
在Python应用中Telegram 机器人搭建消息提醒