Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是python中OS模塊的子模塊,用於通用路徑名操作。
os.path.lexists()
Python中的method方法用於檢查給定路徑是否存在。不像os.path.exists()
方法,對於斷開的符號鏈接返回True。
此方法的行為類似於os.path.exists()
在平台上os.path.lstat()
方法不可用。
用法: os.path.lexists(path)
參數:
path:代表文件係統路徑的path-like對象。 path-like對象是表示路徑的字符串或字節對象。
返回類型:此方法返回布爾型的布爾值。如果路徑存在,則此方法返回True,否則返回False。對於斷開的符號鏈接,它將返回True。
代碼: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
參考: https://docs.python.org/3/library/os.path.html
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.lexists() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。