আমাকে একটি নির্দিষ্ট পথে অভিভাবকত্বের ডিরেক্টরিটি বের করতে হবে। এটি দেখতে এটির মতো:
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.
আমি এটা কিভাবে করবো?