Ejemplo 1: Python obtiene la ubicación actual del archivo
import os
os.path.dirname(os.path.abspath(__file__))
Ejemplo 2: directorio de trabajo python
import os
cwd = os.getcwd()
Ejemplo 3: obtener la ruta al directorio actual python
import os
os.path.abspath(os.getcwd())
Ejemplo 4: obtener el directorio actual python
import os
current_working_directory = os.getcwd()
print(current_working_directory) # should print the cwd
""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)