特定のパスの親ディレクトリの名前を抽出する必要があります。これは次のようになります。
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.
どうやってやるの?
1
この回答を確認することをお勧めします:stackoverflow.com/a/4580931/311220
—
Acorn
上記のリンクは、私が間違ったことを修正する方法を理解するのに役立ちました。ありがとうございました。
—
タリア