当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。