ฉันต้องการแยกชื่อของไดเรกทอรีแม่ของเส้นทางที่แน่นอน นี่คือสิ่งที่ดูเหมือนว่า:
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.
ฉันจะทำสิ่งนั้นได้อย่างไร