Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。
os.path.realpath()
Python中的方法用於通過消除路徑中遇到的任何符號鏈接來獲取指定文件名的規範路徑。
用法: os.path.realpath(path)
參數:
path:代表文件係統路徑的path-like對象。
path-like對象是表示路徑的字符串或字節對象。
返回類型:此方法返回代表規範路徑的字符串值。
創建軟鏈接或符號鏈接
在Unix或Linux中,可以使用ln命令創建軟鏈接或符號鏈接。下麵是在shell提示符下創建符號鏈接的語法:
$ ln -s {source-filename} {symbolic-filename}
例:
例:
在上麵的輸出中,“ /home /ihritik /Desktop /file(shortcut).txt”是一個符號鏈接。
代碼:使用os.path.realpath()方法獲取規範路徑並解析符號鏈接
# Python program to explain os.path.realpath() method
# importing os module
import os
# Path
path = "/home / ihritik / Desktop / file(shortcut).txt"
# Get the canonical path
# of the specified path
# by eliminating any symbolic links
# encountered in the path
real_path = os.path.realpath(path)
# Print the canonical path
print(real_path)
# Path
path = "/../../GeeksForGeeks / sample.py"
# Get the canonical path
# of the specified path
# eliminating any symbolic links
# encountered in the path
real_path = os.path.realpath(path)
# Print the canonical path
print(real_path)
# Path
path = "file.txt"
# Get the canonical path
# of the specified path
# eliminating any symbolic links
# encountered in the path
real_path = os.path.realpath(path)
# Print the canonical path
print(real_path)
os.chdir("/home / ihritik / Downloads/")
# Path
path = "file.txt"
# Get the canonical path
# of the specified path
# eliminating any symbolic links
# encountered in the path
real_path = os.path.realpath(path)
# Print the canonical path
print(real_path)
輸出:
/home/ihritik/Documents/file(original).txt /GeeksForGeeks/sample.py /home/ihritik/file.txt /home/ihritik/Downloads/file.txt
參考: https://docs.python.org/3/library/os.path.html
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python object()用法及代碼示例
- Python bytes()用法及代碼示例
- Python os.times()用法及代碼示例
- Python os.chmod用法及代碼示例
- Python hash()用法及代碼示例
- Python os.ftruncate()用法及代碼示例
- Python os.truncate()用法及代碼示例
- Python os.fsdecode()用法及代碼示例
- Python dict pop()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.realpath() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。