Python os.path.exists()
Python中的os.path.exists()方法用于检查指定的路径是否存在。此方法还可用于检查给定路径是否指向打开的文件描述符。
语法:os.path.exists(path)
参数:
path:表示文件系统路径的类路径对象。类路径对象是表示路径的字符串或字节对象。
返回类型:此方法返回一个类bool的布尔值。如果path存在,此方法返回True,否则返回False。
示例1
使用os.path.exists() 方法
# Python program to explain os.path.exists() method
# importing os module
import os
# Specify path
path = '/usr/local/bin/'
# Check whether the specified
# path exists or not
isExist = os.path.exists(path)
print(isExist)
# Specify path
path = '/home/User/Desktop/file.txt'
# Check whether the specified
# path exists or not
isExist = os.path.exists(path)
print(isExist)
输出:
True
False
注意:如果未授予对所请求文件执行os.stat()的权限,即使该路径存在,那么os.path.exists()函数可能会返回False。