python判断文件夹下是否存在文件的方法:
1、使用os.path.exists()方法判断文件是否存在
importos os.path.exists(test_file.txt) #True os.path.exists(no_exist_file.txt) #False
2、使用os.path.isfile()方法判断文件是否存在
os.path.isfile(path):判断路径是否为文件
importos dirct='/home/workespace/notebook/'foriinos.listdir(dirct): fulldirct=os.path.join(dirct,i) ifos.path.isfile(fulldirct):#入参需要是绝对路径 print(i)原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容