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
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.setgroups()用法及代码示例
- Python os.sched_getaffinity()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python cmath.log()用法及代码示例
- Python os.truncate()用法及代码示例
- Python cmath.exp()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.minor()用法及代码示例
- Python os.sched_get_priority_max()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.fdatasync() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。