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 que se utiliza para la manipulación de nombres de rutas comunes.
os.path.relpath()
El método en Python se usa para obtener una ruta de archivo relativa a la ruta dada, ya sea desde el directorio de trabajo actual o desde el directorio dado.
Nota: este método solo calcula la ruta relativa. No se comprueba la existencia de la ruta o directorio dado.
Sintaxis: os.path.relpath(ruta, inicio = os.curdir)
Parámetro:
ruta : un objeto similar a una ruta que representa la ruta del sistema de archivos.
start (opcional): un objeto similar a una ruta que representa la ruta del sistema de archivos.
La ruta relativa para la ruta dada se calculará con respecto al directorio indicado por inicio. El valor predeterminado de este parámetro es os.curdir, que es una string constante utilizada por el sistema operativo para hacer referencia al directorio actual.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 de archivo relativa a la ruta dada desde el directorio de inicio.
Código: Uso del método os.path.relpath()
# Python program to explain os.path.relpath() method # importing os module import os # Path path = "/home / User / Desktop / file.txt" # Path of Start directory start = "/home / User" # Compute the relative file path # to the given path from the # the given start directory. relative_path = os.path.relpath(path, start) # Print the relative file path # to the given path from the # the given start directory. print(relative_path) # Path path = "/home / User / Desktop / file.txt" # Compute the relative file path # to the given path from the # the current directory. # if we do not specify the start # parameter it will default to # os.curdir i.e current directory relative_path = os.path.relpath(path) # Print the relative file path # to the given path from the # the given start directory. print(relative_path) # Path path = "/home / User / Desktop / file.txt" # Path of Start directory start = "GeeksForGeeks / home" # Compute the relative file path # to the given path from the # the given start directory. relative_path = os.path.relpath(path, start) # Print the relative file path # to the given path from the # the given start directory. print(relative_path) # Path path = "/home / User / Desktop / file.txt" # Path of Start directory start = "/home / User / ihritik / file.txt" # Compute the relative file path # to the given path from the # the given start directory. relative_path = os.path.relpath(path, start) # Print the relative file path # to the given path from the # the given start directory. print(relative_path)
Desktop/file.txt ../User/Desktop/file.txt ../../../User/Desktop/file.txt ../../Desktop/file.txt
Referencia: https://docs.python.org/3/library/os.path.html