Saya perlu mengekstrak nama direktori induk dari jalur tertentu. Seperti inilah tampilannya:
c:\stuff\directory_i_need\subdir\file
Saya memodifikasi konten "file" dengan sesuatu yang menggunakan directory_i_need
nama di dalamnya (bukan path). Saya telah membuat fungsi yang akan memberi saya daftar semua file, dan kemudian ...
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.
Bagaimana saya bisa melakukan itu?