Python os.dup2() 方法
python os.dup2() 方法
os.dup2() 方法用于將一個(gè)文件描述符 fd 復(fù)制到另一個(gè) fd2。
unix, windows 上可用。
語法
dup2()方法語法格式如下:
os.dup2(fd, fd2);
參數(shù)
- fd -- 要被復(fù)制的文件描述符
- fd2 -- 復(fù)制的文件描述符
返回值
沒有返回值。
實(shí)例
以下實(shí)例演示了 dup2() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) # 寫入字符串 os.write(fd, "this is test") # 文件描述符為 1000 fd2 = 1000 os.dup2(fd, fd2); # 在新的文件描述符上插入數(shù)據(jù) os.lseek(fd2, 0, 0) str = os.read(fd2, 100) print "讀取的字符串是 : ", str # 關(guān)閉文件 os.close( fd ) print "關(guān)閉文件成功!!"
執(zhí)行以上程序輸出結(jié)果為:
讀取的字符串是 : this is test 關(guān)閉文件成功!!
相關(guān)文章
- Python 條件語句
- Python while 循環(huán)語句
- Python break 語句
- Python2 與 Python3?? 版本區(qū)別
- Python 環(huán)境
- Python 詞典
- Python 隊(duì)列
- Python Deque
- Python 搜索樹
- Python 算法設(shè)計(jì)
- Python 算法分析
- Python 樹遍歷算法
- Python 搜索算法
- Python 圖算法
- Python 算法理由
- Python3 數(shù)據(jù)類型
- Python3 迭代器
- Python3 面向?qū)ο?/a>
- Python3 作用域
- Python3 多線程