Extrahieren Sie einen Teil des Dateipfads (ein Verzeichnis) in Python
Ich muss den Namen des übergeordneten Verzeichnisses eines bestimmten Pfads extrahieren. So sieht es aus:c:\ stuff \ directory_i_need \ subdir \ file
. Ich ändere den Inhalt der "Datei" mit etwas, das das verwendetdirectory_i_need
Name drin (nicht der Pfad). Ich habe eine Funktion erstellt, die mir eine Liste aller Dateien gibt, und dann ...
<code>for path in file_list: #directory_name = os.path.dirname(path) # this is not what I need, that's why it is commented directories, files = path.split('\\') line_replace_add_directory = line_replace + directories # this is what I want to add in the text, with the directory name at the end # of the line. </code>
Wie kann ich das machen?