Python os.link() 方法
python os.link() 方法
os.link() 方法用于創(chuàng)建硬鏈接,名為參數(shù) dst,指向參數(shù) src。
該方法對于創(chuàng)建一個已存在文件的拷貝是非常有用的。
只支持在 unix, windows 下使用。
語法
link()方法語法格式如下:
os.link(src, dst)
參數(shù)
- src -- 用于創(chuàng)建硬連接的源地址
- dst -- 用于創(chuàng)建硬連接的目標(biāo)地址
返回值
該方法沒有返回值。
實(shí)例
以下實(shí)例演示了 link() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 path = "/var/www/html/foo.txt" fd = os.open( path, os.o_rdwr|os.o_creat ) # 關(guān)閉文件 os.close( fd ) # 創(chuàng)建以上文件的拷貝 dst = "/tmp/foo.txt" os.link( path, dst) print "創(chuàng)建硬鏈接成功!!"
執(zhí)行以上程序輸出結(jié)果為:
創(chuàng)建硬鏈接成功!!
相關(guān)文章
- Python 教程
- Python 變量類型
- Python 列表 List
- Python 元組
- Python 字典 Dictionary
- Python 日期和時間
- Python 文件I/O
- Python CGI編程
- Python 網(wǎng)絡(luò)編程
- Python2 與 Python3?? 版本區(qū)別
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 環(huán)境
- Python 二維數(shù)組
- Python 節(jié)點(diǎn)
- Python 算法分析
- Python 分而治之
- Python3 運(yùn)算符
- Python3 集合(Set)
- Python3 面向?qū)ο?/a>
- Python3 網(wǎng)絡(luò)編程