diviser un chemin en toutes les sous-cheminées

import os
path = os.path.normpath(path)
path.split(os.sep)
Real Raccoon