Python os.symlink() 方法
python os.symlink() 方法
os.symlink() 方法用于創(chuàng)建一個(gè)軟鏈接。
語法
symlink()方法語法格式如下:
os.symlink(src, dst)
參數(shù)
- src -- 源地址。
- dst -- 目標(biāo)地址。
返回值
該方法沒有返回值。
實(shí)例
以下實(shí)例演示了 symlink() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os src = '/usr/bin/python' dst = '/tmp/python' # 創(chuàng)建軟鏈接 os.symlink(src, dst) print "軟鏈接創(chuàng)建成功"
執(zhí)行以上程序輸出結(jié)果為:
軟鏈接創(chuàng)建成功
相關(guān)文章
- Python continue 語句
- Python pass 語句
- Python 字符串
- Python 字典 Dictionary
- Python SMTP發(fā)送郵件
- Python 多線程
- Python 環(huán)境
- Python 棧
- Python Deque
- Python 排序算法
- Python 搜索算法
- Python 大O符號(hào)
- Python3 注釋
- Python3 運(yùn)算符
- Python3 元組(Tuple)
- Python3 OS 文件/目錄方法
- Python3 錯(cuò)誤和異常
- Python3 多線程
- Python3 XML 解析
- Python3 日期和時(shí)間