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


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


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

os.writev()Python中的方法用於將指定緩衝區的內容寫入指定的文件描述符。在這裏,緩衝區是可變bytes-like對象的序列。緩衝區以指定順序處理。在進入第二緩衝區之前,先寫入第一緩衝區的全部內容,依此類推。

文件描述符是一個小整數值,對應於當前進程已打開的文件。它用於執行各種較低級別的I /O操作,例如讀取,寫入,發送等。


注意os.writev()該方法僅在UNIX平台上可用。

用法: os.writev(fd, buffers) 

參數:
fd:要寫入的文件描述符。
buffers:一係列可變的bytes-like對象,其中包含要寫入指定文件描述符的數據。

返回類型:此方法返回一個整數值,該值表示實際寫入的字節數。

代碼:使用os.writev()方法將緩衝區的內容寫入文件
# Python program to explain os.writev() method 
  
# import os module 
import os 
  
# File path 
path = "./file2.txt"
  
# Create a file and get the 
# file descriptor associated  
# with it using os.open() method 
fd = os.open(path, os.O_CREAT | os.O_WRONLY) 
  
  
# Bytes-like objects  
# the data to be written in the file 
buffer1 = bytearray(b"GeeksForGeeks:") 
buffer2 = bytearray(b"A computer science portal ") 
buffer3 = bytearray(b"for geeks") 
  
# write the data contained in 
# bytes-like objects 
# to the file descriptor fd 
# using os.writev() method 
numBytes = os.writev(fd, [buffer1, buffer2, buffer3]) 
  
# print the content of file 
with open(path) as f:
    print(f.read()) 
  
# Print the number of bytes actually written 
print("Total Number of bytes actually written:", numBytes)
輸出:
GeeksForGeeks:A computer science portal for geeks
Total Number of bytes actually written:50


相關用法


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