黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python os.dup2() 方法

python os.dup2() 方法

python os 文件/目錄方法python os 文件/目錄方法

os.dup2() 方法用于將一個文件描述符 fd 復(fù)制到另一個 fd2。

unix, windows 上可用。

 

語法

dup2()方法語法格式如下:

os.dup2(fd, fd2);

 

參數(shù)

  • fd -- 要被復(fù)制的文件描述符
  • fd2 -- 復(fù)制的文件描述符

 

返回值

沒有返回值。

 

實例

以下實例演示了 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)閉文件成功!!

python os 文件/目錄方法python os 文件/目錄方法

下一節(jié):python os.fchdir() 方法

python 教程

相關(guān)文章