Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。
os.path.samestat()
Python中的method方法用于检查给定的stat元组是否引用相同的文件。 Stat元组是os.fstat(),os.lstat()方法或os.stat()方法返回的对象。它表示路径的状态。
用法: os.path.samestat(stat1, stat2)
参数:
stat1:一个统计元组。
stat2:一个统计元组。
返回类型:此方法返回布尔型的布尔值。如果两个stat元组都引用同一个文件,则此方法返回True,否则返回false。
代码:使用os.path.samestat()方法检查给定的stat元组是否引用同一文件。
# Python program to explain os.path.samestat() method
# importing os module
import os
# Path
path1 = "/home / ihritik / Desktop / file.txt"
# Get the status of
# the given path
# using os.stat() method
stat1 = os.stat(path1)
# Path
path1 = "/home / ihritik / Desktop / file.txt"
# open the file and get
# the file descriptor associated
# with it
fd = os.open(path1, os.O_RDONLY)
# Get the status of the
# file assciated with the
# file descriptor fd
# using os.fstat() method
stat2 = os.fstat(fd)
# Check whether the
# stat1 and stat2 refer
# to the same file
sameFile = os.path.samestat(stat1, stat2)
# Print the result
print(sameFile)
os.close(fd)
# Path
path3 = "/home / ihritik / Desktop / file.txt"
# Get the status of
# the above path
# using os.lstat() method
stat3 = os.lstat(path3)
# Check whether the
# stat1 and stat3 refer
# to the same file
sameFile = os.path.samestat(stat1, stat3)
# Print the result
print(sameFile)
# Path
path4 = "/home / ihritik / Documents / file.txt"
# Get the status of
# the above path
# using os.stat() method
stat4 = os.stat(path4)
# Check whether the
# stat1 and stat4 refer
# to the same file
sameFile = os.path.samestat(stat1, stat4)
# Print the result
print(sameFile)
输出:
True True False
参考: https://docs.python.org/3/library/os.path.html
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.samestat() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。