• 判断文件是否存在
os.path.exists(dir)


os.path.isfile() #是文件
os.path.isdir()  #是目录 
pathlib.Path.exists() #如果路径或目录存在,则返回True