Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。
os.readlink()
Python中的方法用於解析符號鏈接。此方法返回符號鏈接指向的路徑。
用法: os.readlink(path, *, dir_fd = None)
參數:
path:表示文件路徑的path-like對象。 path-like對象是表示路徑的字符串或字節對象。
dir_fd(可選):引用目錄的文件描述符。此參數的默認值為“無”。
如果指定的路徑是絕對路徑,則dir_fd將被忽略。
Note:參數列表中的“ *”表示以下所有參數(此處為“ dir_fd”)均為純關鍵字參數,可以使用其名稱(而不是位置參數)提供它們。
返回類型:如果指定的路徑也是字符串對象,則此方法返回字符串對象;如果指定的路徑是字節對象,則此方法返回字節對象。返回的值表示符號鏈接指向的路徑。
代碼:使用os.readlink()方法解析符號鏈接
# Python program to explain os.readlink() method
# importing os module
import os
# Original file path
path = "/home/ihritik/Documents/file.txt"
# Create a symbolic link
# of above path
# using os.symlink() method
link = "/home/ihritik/Desktop/file(symlink).txt"
os.symlink(path, link)
# So, link is a symbolic link
# Now using os.readlink() method
# resolve the symbolic link
originalPath = os.readlink(link)
# print the path to which
# symbolic link points
print("Symbolic link points to", originalPath)
# If the given path is not a
# symbolic link then
# os.readlink() method will
# raise an OSError
輸出:
Symbolic link points to /home/ihritik/Documents/file.txt
參考: https://docs.python.org/3/library/os.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.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
- Python os.makedev()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.readlink() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。