Python os.fdatasync() 方法
os.fdatasync() 方法用于强制将文件写入磁盘
该文件由文件描述符 fd 指定,但是不强制更新文件的状态信息
如果需要刷新缓冲区可以使用该方法
注意: 该方法在 Windows 下无效
导入模块
import os
语法
os.fdatasync(fd);
参数
参数 | 说明 |
---|---|
fd | 文件描述符 |
返回值
无
范例
下面的范例演示了 os.fdatasync() 方法的简单使用
#!/usr/bin/python import os # 打开文件 "/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 )
运行以上 Python 代码,输出结果如下
读取的字符是 : This is test