9

我有这样的文件结构:

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\']

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

4

1 回答 1

15

尝试

dirname = dirpath.split(os.path.sep)[-1]
于 2013-01-06T16:13:04.057 回答