os.walk获取目录名称

时间:2013-01-06 16:05:26

标签: python os.walk

我有这样的文件结构:

d:\temp\random1\index.html
d:\temp\random2\index.html
d:\temp\random3\index.html

我希望获得在python中列出的路径。所以输出将是:

files = ['path': 'd:\temp\random1\index.html', 'directory': 'random1']

我正在使用这样的代码:

files = []
for dirpath, dirnames, filenames in os.walk('D:\\temp'):
    for fname in filenames:
        if fname.endswith(".md"):
            path = os.path.join(dirpath,fname)
            files.append({'path':path,'directory': dirpath})

但是我无法弄清楚如何获取目录值。我得到的代码是:

files = ['path': 'd:\temp\random1\index.html', 'directory': 'd:\temp\random1\']

如何在没有肮脏黑客的情况下获取目录?

1 个答案:

答案 0 :(得分:11)

尝试

dirname = dirpath.split(os.path.sep)[-1]