描述
方法readlink()返回一个字符串,表示符号链接指向的路径。它可能返回绝对或相对路径名。
用法
以下是语法readlink()方法≫
os.readlink(path)
参数
path─ 这是我们要查找链接源的路径或符号链接。
返回值
此方法返回一个字符串,表示符号链接指向的路径。
示例
下面的例子展示了 readlink() 方法的用法。
# !/usr/bin/python3
import os
src = 'd://tmp//python3'
dst = 'd://tmp//python2'
# This creates a symbolic link on python in tmp directory
os.symlink(src, dst)
# Now let us use readlink to display the source of the link.
path = os.readlink( dst )
print (path)
结果
让我们编译并运行上面的程序,这将创建一个指向 d:\tmp\python3 的符号链接,稍后它将使用 readlink() 调用读取符号链接的源代码。这是 Windows 平台上的示例,需要管理员权限才能运行。在运行这个程序之前,确保你没有 d:\tmp\python2 已经可用。
d:\tmp\python2
相关用法
- Python 3 os.read()用法及代码示例
- Python 3 os.rename()用法及代码示例
- Python 3 os.renames()用法及代码示例
- Python 3 os.removedirs()用法及代码示例
- Python 3 os.remove()用法及代码示例
- Python 3 os.rmdir()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 os.unlink()用法及代码示例
- Python 3 os.major()用法及代码示例
- Python 3 os.fdopen()用法及代码示例
- Python 3 os.fdatasync()用法及代码示例
- Python 3 os.isatty()用法及代码示例
- Python 3 os.walk()用法及代码示例
- Python 3 os.makedirs()用法及代码示例
- Python 3 os.utime()用法及代码示例
- Python 3 os.tcgetpgrp()用法及代码示例
- Python 3 os.statvfs()用法及代码示例
- Python 3 os.lchown()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - os.readlink() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。