Python的os.fdatasync()
方法返回連接到檔描述符fd
的打開的檔對象。 然後可以對檔對象執行所有定義的函數功能。
語法
以下是fdopen()
方法的語法 -
os.fdopen(fd, [, mode[, bufsize]]);
參數
- fd − 這是要返回檔對象的檔描述符。
- mode − 此可選參數是一個字串,指示檔如何打開。 最常用的模式值為’
r
‘用於讀取,’w
‘用於寫入(截斷該檔已存在)和’a
‘表示要進行追加。 - bufsize − 此可選參數指定檔所需的緩衝區大小:
0
表示無緩衝,1
表示行緩衝,任何其他正值表示使用(大約)該大小的緩衝區。
返回值
- 此方法返回連接到檔描述符的打開的檔對象。
示例
以下示例顯示了fdopen()
方法的用法。
#!/usr/bin/python3
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模組方法
下一篇:
Python異常處理