Python os.readlink() 方法
python os.readlink() 方法
os.readlink() 方法用于返回軟鏈接所指向的文件。可能返回絕對(duì)或相對(duì)路徑。
在unix中有效
語法
readlink()方法語法格式如下:
os.readlink(path)
參數(shù)
- path -- 要查找的軟鏈接路徑
返回值
返回軟鏈接所指向的文件
實(shí)例
以下實(shí)例演示了 readlink() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os src = '/usr/bin/python' dst = '/tmp/python' # 創(chuàng)建軟鏈接 os.symlink(src, dst) # 使用軟鏈接顯示源鏈接 path = os.readlink( dst ) print path
執(zhí)行以上程序輸出結(jié)果為:
/usr/bin/python
相關(guān)文章
- Python 變量類型
- Python 循環(huán)嵌套
- Python 元組
- Python 異常處理
- Python OS 文件/目錄方法
- Python 列表
- Python 鏈表
- Python Deque
- Python 高級(jí)鏈表
- Python 搜索樹
- Python 分而治之
- Python 排序算法
- Python 大O符號(hào)
- Python3 環(huán)境搭建
- Python3 解釋器
- Python3 數(shù)字(Number)
- Python3 字符串(String)
- Python3 面向?qū)ο?/a>
- Python3 多線程
- Python3 MySQL 數(shù)據(jù)庫(kù)連接 - PyMySQL 驅(qū)動(dòng)