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 驅動