Belirli bir yolun üst dizinin adını ayıklamak gerekiyor. Öyle görünüyor:
c:\stuff\directory_i_need\subdir\file
"Dosya" içeriğini içinde directory_i_need
adı (yolu değil) kullanan bir şey ile değiştiriyorum . Bana tüm dosyaların listesini verecek bir işlev oluşturduk ve sonra ...
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.
Bunu nasıl yapabilirim?