• 技术文章 >常见问题 >Python常见问题

    python怎么判断文件夹下是否存在文件?

    yangyang2020-06-03 16:09:52原创7950

    python判断文件夹下是否存在文件的方法:

    1、使用os.path.exists()方法判断文件是否存在

    import os
    os.path.exists(test_file.txt)
    #True
    os.path.exists(no_exist_file.txt)
    #False

    2、使用os.path.isfile()方法判断文件是否存在

    os.path.isfile(path):判断路径是否为文件

    import os
    dirct = '/home/workespace/notebook/'for i in os.listdir(dirct):
        fulldirct = os.path.join(dirct, i)
        if os.path.isfile(fulldirct): #入参需要是绝对路径
            print(i)

    更多Python知识请关注Python自学网

    专题推荐:python
    上一篇:python缩进长度统一吗? 下一篇:python中如何提高计算速度?

    相关文章推荐

    • python怎么解复数?• python怎么进行矩阵运算?• python线程用什么模块好?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网