Python教程

【python初级】 os.path.exists(path)返回路径是否存在的布尔值

本文主要是介绍【python初级】 os.path.exists(path)返回路径是否存在的布尔值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

【python初级】 os.path.exists返回路径是否存在的布尔值

  • 1、背景
  • 2、os.path.exists(path)

1、背景

我们在存文件、读取文件等之前,经常需要判定某个路径(文件或者文件夹目录)是否存在。

而python的os.path.exists(path)接口正好可以实现:
返回path路径是否存在的布尔值:路径 path 存在,返回 True;如果路径 path 不存在,返回 False。
其中path可以是文件路径也可以是目录即文件夹路径。

2、os.path.exists(path)

os.path.exists(path)返回路径是否存在的布尔值

import os
path = './data_expand/192.168.1.70_01_4.jpg'

if os.path.exists(path):
    print("path路径存在!")
else:
    print(os.path.exists(path))
    print("path路径不存在!")

如果path路径不存在,运行如下:
在这里插入图片描述

这篇关于【python初级】 os.path.exists(path)返回路径是否存在的布尔值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!