Мне нужно извлечь имя родительского каталога по определенному пути. Вот как это выглядит:
c:\stuff\directory_i_need\subdir\file
Я изменяю содержимое «файла», используя в нем directory_i_need
имя, а не путь. Я создал функцию, которая выдаст мне список всех файлов, а затем ...
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.
Как я могу это сделать?