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


Python os.path.commonprefix()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.commonprefix() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。