Python os.fdatasync() 方法

Python File(文件) 方法 Python OS 文件/目錄方法


概述

os.fdatasync() 方法用于強(qiáng)制將文件寫入磁盤,該文件由文件描述符fd指定,但是不強(qiáng)制更新文件的狀態(tài)信息。如果你需要刷新緩沖區(qū)可以使用該方法。

Unix上可用。

語法

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

os.fdatasync(fd);

參數(shù)

  • fd -- 文件描述符

返回值

該方法沒有返回值。

實(shí)例

以下實(shí)例演示了 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

# 關(guān)閉文件
os.close( fd )

print "關(guān)閉文件成功!!"

執(zhí)行以上程序輸出結(jié)果為:

讀取的字符是 :  This is test
關(guān)閉文件成功!!

Python File(文件) 方法 Python OS 文件/目錄方法