Python comment obtenir le nom du dossier d'un fichier

# Basic syntax:
import os
os.path.dirname('/path/to/your/favorite/file.txt')
--> '/path/to/your/favorite/'
Charles-Alexandre Roy