Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。
os.path.samefile()
Python中的方法用于检查给定的两个路径名是否引用相同的文件或目录。通过比较设备编号和给定路径的i-node编号来确定。
该方法利用os.stat()
获取给定路径的设备号和i-node号的方法。因此,如果以某种方式os.stat()
任一路径名上的调用均失败。
用法: os.path.samefile(path1, path2)
参数:
path1:path-like对象,代表第一个文件系统路径。
path2:path-like对象,表示第二个文件系统路径。
path-like对象是表示路径的字符串或字节对象。
返回类型:此方法返回布尔型的布尔值。如果两个路径都引用同一个文件,则此方法返回True,否则返回False。
代码:使用os.path.samefile()方法检查给定的路径是否引用相同的文件或目录。
# Python program to explain os.path.samefile() method
# importing os module
import os
# Path
path1 = "/home / ihritik / Documents / file(original).txt"
# Create a symbolic link
sym_link = "/home / ihritik / Desktop / file(shortcut).txt"
os.symlink(path1, sym_link)
# Check whether the given
# paths refer to the same
# file or directory or not
areSame = os.path.samefile(path1, sym_link)
# Print the result
print(areSame)
# In above example, sym_link is
# a symbolic link which refers
# to path1, so os.path.samefile() method
# will return True as both refer
# to same file
# First Path
path2 = "/home / ihritik / GeeksForGeeks"
# Second path
# consider the current working directory
# is "/home / ihritik"
path3 = os.path.join(os.getcwd(), "GeeksForGeeks")
# Check whether the given
# paths refer to the same
# file or directory or not
areSame = os.path.samefile(path2, path3)
# Print the result
print(areSame)
输出:
True True
参考: 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.samefile() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。