描述
Python方法fdopen()返回连接到文件描述符 fd 的打开文件对象。然后您可以对文件对象执行所有定义的函数。
用法
以下是语法fdopen()方法 -
os.fdopen(fd, [, mode[, bufsize]]);
参数
fd- 这是要为其返回文件对象的文件描述符。
mode- 此可选参数是一个字符串,指示如何打开文件。 mode 最常用的值是 'r' 用于读取,'w' 用于写入(如果文件已经存在,则截断文件)和 'a' 用于附加。
bufsize- 此可选参数指定文件所需的缓冲区大小:0 表示未缓冲,1 表示行缓冲,任何其他正值表示使用(大约)该大小的缓冲区。
返回值
此方法返回连接到文件描述符的打开文件对象。
示例
下面的例子展示了 fdopen() 方法的用法。
#!/usr/bin/python
import os, sys
# Open a file
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )
# Now get a file object for the above file.
fo = os.fdopen(fd, "w+")
# Tell the current position
print "Current I/O pointer position:%d" % fo.tell()
# Write one string
fo.write( "Python is a great language.\nYeah its great!!\n");
# Now read this file from the beginning.
os.lseek(fd, 0, 0)
str = os.read(fd, 100)
print "Read String is:", str
# Tell the current position
print "Current I/O pointer position:%d" % fo.tell()
# Close opened file
fo.close()
print "Closed the file successfully!!"
当我们运行上面的程序时,它会产生以下结果 -
Current I/O pointer position:0 Read String is: This is testPython is a great language. Yeah its great!! Current I/O pointer position:45 Closed the file successfully!!
相关用法
- Python os.fdatasync()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.fstatvfs()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python os.fchdir()用法及代码示例
- Python os.fsencode()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python os.fsync()用法及代码示例
- Python os.fchown()用法及代码示例
- Python os.fstat()用法及代码示例
- Python os.fpathconf()用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.read()用法及代码示例
- Python os.DirEntry.inode()用法及代码示例
- Python os.closerange()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getresgid() and os.setresgid()用法及代码示例
- Python os.pathconf()用法及代码示例
- Python os.chflags()用法及代码示例
注:本文由纯净天空筛选整理自 Python os.fdopen() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。