web-dev-qa-db-fra.com

Récupère le chemin du répertoire du chemin absolu du fichier dans Python

Je veux obtenir le répertoire où réside le fichier. Par exemple, le chemin complet est:

fullpath = "/absolute/path/to/file"
# something like:
os.getdir(fullpath) # if this existed and behaved like I wanted, it would return "/absolute/path/to"

Je pourrais le faire comme ça:

dir = '/'.join(fullpath.split('/')[:-1])

Mais l'exemple ci-dessus repose sur un séparateur de répertoire spécifique et n'est pas vraiment joli. Y a-t-il une meilleure façon?

36
ddinchev

Vous recherchez ceci:

>>> import os.path
>>> fullpath = '/absolute/path/to/file'
>>> os.path.dirname(fullpath)
'/absolute/path/to'

Fonctions associées:

>>> os.path.basename(fullpath)
'file'
>>> os.path.split(fullpath)
('/absolute/path/to','file')
59
isedev