특정 경로의 상위 디렉토리 이름을 추출해야합니다. 이것은 다음과 같습니다
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
위의 링크는 내가 잘못한 것을 고치는 방법을 이해하는 데 도움이되었습니다. 감사합니다.
—
Thalia
또는 this one : stackoverflow.com/a/31273488/1048186
—
Josiah Yoder 2014 년