python怎么判断是文件夹还是文件

怎样使用 Python 来判断一个路径是否存在判断一个路径是文件还是目录

判断一个路径是否存在

可以判断一个文件或目录(文件夹)是否存在

import os.path
os.path.exists(path);

判断一个文件是否存在

import os.path
os.path.isfile(path);

判断一个目录(文件夹)是否存在

import os.path
os.path.isdir(path);

判断一个路径是文件还是目录(文件夹)

方法一

import os.path
os.path.isdir(path);
    # 返回 True 表示是目录(文件夹)

方法二

    import os.path
    os.path.isfile(path);
    # 返回 True 表示是文件

更多技术请关注云海天Python教程。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么判断是文件夹还是文件