Python os.write()
Python中的os.write()方法用于将一个字节串写入给定的文件描述符。
文件描述符是一个小整数值,对应于当前进程已打开的文件。它用于执行各种低级的I/O操作,如读、写、发送等。
注意:os.write()方法用于低级操作,应该应用于os.open()或os.pipe()方法返回的文件描述符。
语法:os.写(fd, str)
参数:
fd:表示目标文件的文件描述符。
写入文件的bytes-like object。
返回类型:该方法返回一个整数值,表示实际写入的字节数。
示例1
使用os.write()方法向给定的文件描述符写入一个字节字符串
# Python program to explain os.write() method
# importing os module
import os
# File path
path = "/home / ihritik / Documents / GeeksForGeeks.txt"
# Open the file and get
# the file descriptor associated
# with it using os.open() method
fd = os.open(path, os.O_RDWR)
# String to be written
s = "GeeksForGeeks: A Computer science portal for Geeks."
# Convert the string to bytes
line = str.encode(s)
# Write the bytestring to the file
# associated with the file
# descriptor fd and get the number of
# Bytes actually written
numBytes = os.write(fd, line)
print("Number of bytes written:", numBytes)
# close the file descriptor
os.close(fd)
输出:
Number of bytes written: 51