Python os.fsync() 方法
python os.fsync() 方法
os.fsync() 方法強制將文件描述符為fd的文件寫入硬盤。在unix, 將調用fsync()函數;在windows, 調用 _commit()函數。
如果你準備操作一個python文件對象f, 首先f.flush(),然后os.fsync(f.fileno()), 確保與f相關的所有內存都寫入了硬盤.在unix,windows中有效。
unix、windows上可用。
語法
fsync()方法語法格式如下:
os.fsync(fd)
參數
- fd -- 文件的描述符。
返回值
該方法沒有返回值。
實例
以下實例演示了 fsync() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) # 寫入字符串 os.write(fd, "this is test") # 使用 fsync() 方法. os.fsync(fd) # 讀取內容 os.lseek(fd, 0, 0) str = os.read(fd, 100) print "讀取的字符串為 : ", str # 關閉文件 os.close( fd) print "關閉文件成功!!"
執行以上程序輸出結果為:
讀取的字符串為 : this is test 關閉文件成功!!