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


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


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。

os.path.sameopenfile()Python中的方法用於檢查給定的文件描述符是否引用相同的文件。
文件描述符是一個小整數值,對應於當前進程已打開的文件。
文件描述符指示資源,並充當執行各種較低級別I /O操作(如讀取,寫入,發送等)的句柄。
例如:標準輸入通常是值為0的文件描述符,標準輸出通常是值為1的文件描述符,標準錯誤通常是值為2的文件描述符。當前進程打開的其他文件將獲得值3、4、5,依此類推。

用法: os.path.sameopenfile(fd1, fd2)

參數:
fd1:文件描述符。
fd2:文件描述符。

返回類型:此方法返回布爾型的布爾值。如果文件描述符fd1和fd2都引用同一個文件,則此方法返回True,否則返回false。

代碼:使用os.path.sameopenfile()方法檢查給定的文件描述符是否引用同一文件。

# Python program to explain os.path.sameopenfile() method  
    
# importing os module  
import os 
  
# Path 
path = "/home / ihritik / Desktop / file1.txt"
  
  
# open the file represented by 
# the above given path and get 
# the file descriptor associated 
# with it using os.open() method 
fd1 = os.open(path, os.O_RDONLY) 
  
  
# open the file represented by 
# the above given path and get 
# the file object corresponding  
# to the opened file  
# using open() method 
File = open(path, mode ='r') 
  
  
# Get the file desciptor 
# associated with the  
# file object 'File'  
fd2 = File.fileno() 
  
  
# check whether the file descriptor 
# fd1 and fd2 refer to same  
# file or not 
sameFile = os.path.sameopenfile(fd1, fd2) 
  
# Print the result 
print(sameFile) 
  
  
# Path 
path2 = "/home / ihritik / Documents / sample.txt"
  
  
# open the file represented by 
# the above given path and get 
# the file descriptor associated 
# with it using os.open() method 
fd3 = os.open(path2, os.O_RDONLY) 
  
  
# check whether the file descriptor 
# fd1 and fd3 refer to same  
# file or not 
sameFile = os.path.sameopenfile(fd1, fd3) 
  
# Print the result 
print(sameFile) 
  
  
# close file descriptors 
close(fd1) 
close(fd2) 
close(fd3)
輸出:
True
False

參考: https://docs.python.org/3/library/os.path.html



相關用法


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