【python初级】 os.path.exists返回路径是否存在的布尔值
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路径不存在,运行如下: