您现在的位置是:课程教程文章

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

2023-12-18 18:19课程教程文章 人已围观

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中如何提高计算速度?

下一篇:没有了

站点信息

  • 文章统计篇文章