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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。