Python os.fdatasync() 方法
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 关闭文件成功!!
相关文章
- Python while 循环语句
- Python break 语句
- Python XML 解析
- Python2 与 Python3 版本区别
- Python IDE
- Python 数组
- Python 词典
- Python 高级链表
- Python 二叉树
- Python 算法分析
- Python 分而治之
- Python 回溯
- Python3 数字(Number)
- Python3 for while 循环语句
- Python3 模块
- Python3 输入和输出
- Python3 OS 文件/目录方法
- Python3 面向对象
- Python3 内置函数
- Python3 MySQL 数据库连接 - PyMySQL 驱动