Extraire le nom d'un fichier et l'extension à partir du chemin d'accès avec python

Published: 29 avril 2015

DMCA.com Protection Status

Simple exemple sur comment obtenir le nom d'un fichier et son extension à partir d'un chemin d'accès sous python (ici 'users/toto/desktop/file.pdf')

>>> import os
>>> path = 'users/toto/desktop/file.pdf'
>>> from os.path import basename
>>> basename(path)
'file.pdf'
>>> fileName, fileExtension = os.path.splitext(path)
>>> fileExtension
'.pdf'

Recherches associées