Python 3 – os.fdatasync() 方法

Python 3 – os.fdatasync() 方法

描述

fdatasync() 方法强制将文件描述符fd对应的文件写入硬盘。这并不强制更新元数据。如果您想刷新缓存,则可以使用此方法。

语法

以下是 fdatasync() 方法的语法:

os.fdatasync(fd)

参数

fd – 要写入数据的文件描述符。

返回值

该方法不返回任何值。

示例

下面的示例演示了如何使用 fdatasync() 方法。

#!/usr/bin/python3

import os, sys

# 打开一个文件
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

# 写入一行字符串
line = "this is test" 

# 字符串需要转换成字节对象
b = str.encode(line)
os.write(fd, b)

# 现在您可以使用 fdatasync() 方法。
# 实际上,您将看不到它的效果。
os.fdatasync(fd)

# 从文件开头读取该文件。
os.lseek(fd, 0, 0)
str = os.read(fd, 100)
line = os.read(fd2, 100)
str = line.decode()
print ("Read String is : ", str)

# 关闭打开的文件
os.close( fd )

print ("已成功关闭文件!")

结果

运行以上程序时,它会生成以下结果 –

Read String is :  This is test
已成功关闭文件!

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程