Python os.fdatasync() 方法
概述
os.fdatasync() 方法用於強制將檔寫入磁片,該檔由檔描述符fd指定,但是不強制更新檔的狀態資訊。如果你需要刷新緩衝區可以使用該方法。
Unix上可用。
語法
fdatasync()方法語法格式如下:
os.fdatasync(fd);
參數
fd -- 檔描述符
返回值
該方法沒有返回值。
實例
以下實例演示了 fdatasync() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 打開檔 "/tmp/foo.txt" fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) # 寫入字串 os.write(fd, "This is test") # 使用 fdatasync() 方法 os.fdatasync(fd) # 讀取檔 os.lseek(fd, 0, 0) str = os.read(fd, 100) print "讀取的字元是 : ", str # 關閉檔 os.close( fd ) print "關閉檔成功!!"
執行以上程式輸出結果為:
讀取的字元是 : This is test 關閉檔成功!!