我需要提取某个路径的父目录的名称。看起来是这样的:
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 2012年
上面的链接帮助我了解了如何解决我做错的事情。谢谢。
—
塔利亚2012年