Publié le 07/29/2018, rédigé par Davy CLAISSE

Python

Récupérer le répertoire courant

Besoin

Vous souhaitez identifer dans quel répertoire se lance votre programme Python, par exemple afin de compléter correctement un chemin relatif vers un fichier.

Solution

Simplement importer la bibliothèque os et lui demander le répertoire courant

#!/usr/bin/env python
# coding: utf-8
import os
print("Current working directory : " + os.getcwd())