Obtenez le chemin du fichier sans nom de fichier Python

import os
filepath = '/a/path/to/my/file.txt'
os.path.dirname(filepath)
# Yields '/a/path/to/my'
Plain Parrot