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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。