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.

Given these folders

s:\test\zoneA\UnitA
s:\test\zoneB\UnitA
s:\test\zoneB\UnitB\Item_1

I would like to pass to a function 's:\test' and get unique bottom list of folders

Resulting in what you see above... 3 entries. Instead, when I use my function

import os
for top, dirs, files in os.walk('S:\\\test'):
    for nm in dirs:
        print os.path.join(top, nm)

I get...

S:\test\zoneA
S:\test\zoneB
S:\test\zoneA\UnitA
S:\test\zoneB\UnitA
S:\test\zoneB\UnitB
S:\test\zoneB\UnitB\Item_1

Is there a way to get the bottom folder list ? Thanks much.

share|improve this question

1 Answer

I guess what you want are folders without subfolders?

import os
for path, dirs, files in os.walk('S:\\\test'):
    if not dirs:
        print path
share|improve this answer
g e n i o u s ! – Jim Berndt Mar 24 '11 at 20:52

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.