當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.fdatasync()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.fdatasync()Python中的方法用於強製寫入與給定文件描述符關聯的文件。不像os.fsync()方法,它不會強製更新元數據。
os.fdatasync()方法比os.fsync()方法,因為它隻需要強製一次寫入磁盤而不是兩次。

用法: os.fdatasync(fd)

參數:
fd:要為其寫入數據的文件描述符。

返回類型:此方法不返回任何值。

代碼:用於os.fdatasync()方法

# Python program to explain os.fdatasync() method  
    
# importing os module  
import os 
  
  
# File path 
path = 'file.txt'
  
# Open the file and get 
# the file descriptor  
# associated with  
# using os.open() method 
fd = os.open(path, os.O_RDWR) 
  
  
# Write a bytestring 
str = b"GeeksforGeeks" 
  
os.write(fd, str) 
  
  
# The written string is 
# available in program buffer 
# but it might not actually  
# written to disk until 
# program is closed or  
# file descriptor is closed.  
  
# sync. all internal buffers 
# associated with the file descriptor 
# with disk (force write of file) 
# using os.fdatasync() method 
os.fdatasync(fd) 
print("Force write of file committed successfully") 
  
# Close the file descriptor  
os.close(fd) 
  
# os.fdatasync() method 
# does not force update of 
# metadata. if you want to  
# update it too, use 
# os.fsync() method instead. 
輸出:
Force write of file committed successfully

參考: https://docs.python.org/3/library/os.html#os.fdatasync



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.fdatasync() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。