Python os.path.lexists()
Python中的os.path.lexists()方法用于检查给定路径是否存在。与os.path.exists()方法不同,它对断开的符号链接返回True。
这个方法的行为类似于os.path.exists()在os.path.lstat()方法不可用的平台上。
语法:os.path.lexists(path)
参数:
path:表示文件系统路径的类路径对象。类路径对象是表示路径的字符串或字节对象。
返回类型:此方法返回一个类bool的布尔值。如果path存在,此方法返回True,否则返回False。对于断开的符号链接,它将返回True。
示例1
使用os.path.lexists()方法
# Python program to explain os.path.lexists() method
# importing os.path module
import os.path
# Path
path = '/home/User/Desktop'
# Check whether the Given
# path exists or not
pathExists = os.path.lexists(path)
print(pathExists)
# Path
path = '/home/User/Downloads/file.txt'
# Check whether the specified
# path exists or not
pathExists = os.path.lexists(path)
print(pathExists)
# os.path.lexists() method
# will also return True if
# the given path is
# broken symbolic link
输出:
True
False