Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。
os.path.commonprefix()
Python中的方法用於獲取路徑列表中最長的公共路徑前綴。此方法僅返回指定列表中的公共前綴值,返回值可能是也可能不是有效路徑,因為它通過逐列表比較字符來檢查公共前綴。
例如,考慮以下路徑列表:
list of paths common prefix ['/home/User/Photos', /home/User/Videos'] /home/User/ A valid path ['/usr/local/bin', '/usr/lib'] /usr/l Not a valid path
用法: os.path.commonprefix(list)
參數:
path:path-like對象的列表。 path-like對象是表示路徑的字符串或字節對象。
返回類型:此方法返回一個字符串值,該字符串值表示指定列表中最長的公用路徑前綴。
代碼1:使用os.path.commonprefix()方法
# Python program to explain os.path.commonprefix() method
# importing os module
import os
# List of Paths
paths = ['/home/User/Desktop', '/home/User/Documents',
'/home/User/Downloads']
# Get the
# longest common path prefix
# in the specified list
prefix = os.path.commonprefix(paths)
# Print the
# longest common path prefix
# in the specified list
print("Longest common path prefix:", prefix)
# List of Paths
paths = ['/usr/local/bin', '/usr/bin']
# Get the
# longest common path prefix
# in the specified list
prefix = os.path.commonprefix(paths)
# Print the
# longest common path prefix
# in the specified list
print("Longest common path prefix:", prefix)
輸出:
Longest common path prefix: /home/User/D Longest common path prefix: /usr/
注意:如果指定的列表為空,os.path.commonprefix()
方法將返回一個空字符串。
參考: 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.commonprefix() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。