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


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


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

os.close()Python中的方法用於關閉給定的文件描述符,因此它不再引用任何文件或其他資源,並且可以重用。
文件描述符是小整數值,與文件或其他輸入/輸出資源(例如管道或網絡套接字)相對應。文件描述符是資源的抽象指示符,並充當執行各種較低級別I /O操作(如讀取,寫入,發送等)的句柄。例如:標準輸入通常是值為0的文件描述符,標準輸出通常是文件描述符值1和標準錯誤通常是值2的文件描述符。當前進程打開的其他文件將得到值3、4、5,依此類推。

用法: os.close(fd) 

參數:
fd:一個文件描述符,將被關閉。

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

代碼:使用os.close()方法關閉文件描述符
# Python program to explain os.close() method  
    
# importing os module  
import os 
  
# Path 
path = "/home/ihritik/Desktop/file2.txt"
  
  
# open the file and get 
# the file descriptor associated 
# with it using os.open() method 
fd = os.open(path, os.O_WRONLY) 
  
  
# Perform some operation 
# Lets write a string 
s = "GeeksForGeeks:A computer science portal for geeks"
  
# Convert string to bytes object 
line = str.encode(s) 
  
# Write string to file referred by 
# by the file descriptor 
os.write(fd, line) 
  
  
# close the file descriptor 
os.close(fd) 
print("File descriptor closed successfully")
輸出:
File descriptor closed successfully


相關用法


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