Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have such file structure:

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

and I want to get paths to list in python. So the output would be:

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

I am using such code:

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})

but I cannot figure out how to get directory values.All I get with this code is:

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

How to get the directory without some dirty hacks?

share|improve this question

1 Answer

up vote 1 down vote accepted

Try

dirname = dirpath.split(os.path.sep)[-1]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.