Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。
os.path.islink()
Python中的method方法用於檢查給定的路徑是否代表符號鏈接的現有目錄條目。
注意:如果Python運行時不支持符號鏈接,則os.path.islink()
方法始終返回False。
用法: os.path.islink(path)
參數:
path:代表文件係統路徑的path-like對象。 path-like對象是表示路徑的字符串或字節對象。
返回類型:此方法返回布爾型的布爾值。如果給定路徑是符號鏈接的目錄條目,則此方法返回True,否則返回False。
創建軟鏈接或符號鏈接
在Unix或Linux中,可以使用ln命令創建軟鏈接或符號鏈接。下麵是在shell提示符下創建符號鏈接的語法:
$ ln -s {source-filename} {symbolic-filename}
例:
在上麵的輸出中,file(shortcut).txt是一個符號鏈接,還顯示了它鏈接到的文件名。
代碼:使用os.path.islink()方法檢查給定路徑是否為符號鏈接
# Python program to explain os.path.islink() method
# importing os.path module
import os.path
# Path
path = "/home/ihritik/Documents/file(original).txt"
# Check whether the
# given path is a
# symbolic link
isLink = os.path.islink(path)
print(isLink)
# Path
path = "/home/ihritik/Desktop/file(shortcut).txt"
# Check whether the
# given path is a
# symbolic link
isLink = os.path.islink(path)
print(isFile)
輸出:
False True
參考: 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.islink() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。