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.

This falls under the category of asking a question for the sake of answering it (though I will accept answers if they are better than mine)

How does one print out the absolute paths of all parent folders of a given subfolder. Given the following

'/home/marx/Documents/papers/communism'

Return

[
  '/',
  '/home',
  '/home/marx',
  '/home/marx/Documents',
  '/home/marx/Documents/papers',
  '/home/marx/Documents/papers/communism'
]

Note The code does not have to check that the file exists, but I don't want bogus output if there is a trailing forward slash, surrounding spaces, or two side by side forward slashes

share|improve this question

4 Answers

up vote 3 down vote accepted

Use the functions from module os.path - it's platform independent for one thing, i.e. same code will work for Windows paths (when run on a Windows installation).

Use of os.path.normpath() elegantly handles duplicate and trailing path separators as well as paths that include "..". Use this instead of os.path.abspath() as you will get different results when run from different directories on non-absolute paths.

import os.path

def get_parents(path):
    parents = []
    path = os.path.normpath(path)
    while path:
        parents.insert(0, path)
        if path == '/':
            path = ''
        else:
            path = os.path.dirname(path)

    return parents

>>> print get_parents('')
['.']
>>> print get_parents('/')
['/']
>>> print get_parents('/////')
['/']
>>> print get_parents('/home/marx/Documents/papers/communism')
['/', '/home', '/home/marx', '/home/marx/Documents', '/home/marx/Documents/papers', '/home/marx/Documents/papers/communism']
>>> print get_parents('/home/marx/Documents/papers/communism/')
['/', '/home', '/home/marx', '/home/marx/Documents', '/home/marx/Documents/papers', '/home/marx/Documents/papers/communism']
>>> print get_parents('////home/marx////Documents/papers/communism/////')
['/', '/home', '/home/marx', '/home/marx/Documents', '/home/marx/Documents/papers', '/home/marx/Documents/papers/communism']
>>> print get_parents('home/marx////Documents/papers/communism/////')
['home', 'home/marx', 'home/marx/Documents', 'home/marx/Documents/papers', 'home/marx/Documents/papers/communism']
>>> print get_parents('/home/marx////Documents/papers/communism/////../Das Kapital/')
['/', '/home', '/home/marx', '/home/marx/Documents', '/home/marx/Documents/papers', '/home/marx/Documents/papers/Das Kapital']
>>> print get_parents('/home/marx////Documents/papers/communism/////../Das Kapital/')
['/', '/home', '/home/marx', '/home/marx/Documents', '/home/marx/Documents/papers', '/home/marx/Documents/papers/Das Kapital']
>>> print get_parents('/home/marx////Documents/papers/communism/////../Das Kapital/../../../../../../')
['/']
share|improve this answer
This is the best of all of the answers. Small note, on a mac at least (don't have linux at home), leading or trailing spaces lead to bizarre behaviour. – puk May 30 '12 at 7:20
@puk: bizarre behaviour? In *nix spaces are a valid file/directory name, e.g. ' /a/b/c/d ' is valid. It decomposes into [' ', ' /a', ' /a/b', ' /a/b/c', ' /a/b/c/d '] – mhawke May 30 '12 at 7:26
@puk: you did have the stripping of spaces as a requirement, but they can indeed be valid names. If you really want them out, use '/a/b/c/d '.strip(). – lgautier May 30 '12 at 7:50
I see now what you mean – puk May 30 '12 at 8:19

Should handle mostly everything.

import os

def parents(x, sep = os.path.sep):
    x = os.path.normpath(x)
    if x == sep: # bail out if only leading '/'s
        return [x, ]
    elements = x.split(sep)
    res = list(sep.join(elements[:i]) for i in range(1, len(elements)+1))
    res[0] = sep # fix leading /
    return res



>>> x = '/home/marx/Documents///papers/communism/'
>>> parents(x) 
['/',
 '/home',
 '/home/marx',
 '/home/marx/Documents',
 '/home/marx/Documents/papers',
 '/home/marx/Documents/papers/communism']

edit: handle properly "parents('////')"

edit: simplify the code by adding an optional parameter "sep", and use normpath() (as noted in an other answer)

share|improve this answer
Looks a lot cleaner than my version. I'll try it out tomorrow. If it works I'll accept this – puk May 30 '12 at 6:56
Not earth shattering, but fails for parents('////') – puk May 30 '12 at 7:18
Yes. I edited the function to fix it. – lgautier May 30 '12 at 7:36
import os;
import sys;

def stripDoubleSlash(fullPath):
    if fullPath:
        replaced = fullPath.replace('//','/');
        if replaced.find('//') >= 0:
            return stripDoubleSlash(replaced);
        else:
            return replaced;
    return fullPath;
def printAllParents(fullPath):
    tokens = stripDoubleSlash(fullPath).rstrip('/').split('/');
    for i in xrange(0,len(tokens)):
        if i == 0 and not fullPath[0] == '/':
            print tokens[0];
        else:
            print '/'.join(tokens[0:i])+'/'+tokens[i];
if __name__ == '__main__':
    printAllParents(sys.argv[1] if len(sys.argv) > 1 else '/home/marx/Documents/papers/communism/');
share|improve this answer

This minimal block works well, with the exception of failing if there are multiple side by side forward slashes.

#!/usr/bin/env python

import os

def getParents ( path ):    
   parents = [ path ]
   while path != '/':
      path = os.path.dirname ( path )
      parents.append ( path )
   parents.reverse()
   return parents 

if __name__ == '__main__':
   print getParents ( '/home/marx/Documents/papers/communism' )
share|improve this answer
2  
global os? really? – Eli Bendersky May 30 '12 at 3:36
@EliBendersky Do I not need it? I remember it causing problems a while b ack – puk May 30 '12 at 3:37
@puk no you don't need it. – jamylak May 30 '12 at 4:00
1  
PEP8 is your friend. – Burhan Khalid May 30 '12 at 5:16

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.