当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。