मुझे एक निश्चित पथ के मूल निर्देशिका का नाम निकालने की आवश्यकता है। यह है जो ऐसा लग रहा है:
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.
मैं उसे कैसे कर सकता हूँ?