El módulo OS en Python proporciona funciones para interactuar con el sistema operativo. OS viene bajo los módulos de utilidad estándar de Python. Este módulo proporciona una forma portátil de usar la funcionalidad dependiente del sistema operativo. El módulo os.path es un submódulo del módulo OS en Python utilizado para la manipulación de nombres de rutas comunes.
os.path.commonpath()
El método en Python se usa para obtener la subruta común más larga en una lista de rutas. Este método genera ValueError si la lista de rutas especificada contiene rutas absolutas y relativas, o está vacía. A diferencia os.path.commonpath()
del método, el valor devuelto es una ruta válida.
Por ejemplo, considere la siguiente lista de rutas:
list of paths Longest common sub-path ['/home/User/Photos', /home/User/Videos'] /home/User ['/usr/local/bin', '/usr/lib'] /usr
Sintaxis: os.path.commonpath(lista)
Parámetro:
ruta : una lista de objetos similares a una ruta. Un objeto similar a una ruta es una string o un objeto de bytes que representa una ruta.Tipo de devolución: este método devuelve un valor de string que representa la ruta secundaria común más larga en la lista especificada.
Código #1: Uso del método os.path.commonpath()
# Python program to explain os.path.commonpath() method # importing os module import os # List of Paths paths = ['/home/User/Desktop', '/home/User/Documents', '/home/User/Downloads'] # Get the # longest common sub-path # in the specified list prefix = os.path.commonpath(paths) # Print the # longest common sub-path # in the specified list print("Longest common sub-path:", prefix) # List of Paths paths = ['/usr/local/bin', '/usr/bin'] # Get the # longest common sub-path # in the specified list prefix = os.path.commonpath(paths) # Print the # longest common sub-path # in the specified list print("Longest common sub-path:", prefix)
Longest common sub-path: /home/User Longest common sub-path: /usr
Código #2: Uso del método os.path.commonpath()
# Python program to explain os.path.commonpath() method # importing os module import os # List of Paths paths = ['/usr/local/bin', 'usr/bin'] # Get the # longest common sub-path # in the specified list prefix = os.path.commonpath(paths) # Print the # longest common sub-path # in the specified list print("Longest common sub-path:", prefix) # The above code will raise # ValueError as list of paths # contains both absolute and # relative path
Traceback (most recent call last): File "oscommonpath.py", line 12, in prefix = os.path.commonpath(paths) File "/usr/lib/python3.6/posixpath.py", line 505, in commonpath raise ValueError("Can't mix absolute and relative paths") from None ValueError: Can't mix absolute and relative paths
Nota: si la lista especificada está vacía, el os.path.commonpath()
método también generará ValueError .
Referencia: https://docs.python.org/3/library/os.path.html