如何在Python中查找两个目录?

时间:2011-11-22 04:03:17

标签: python directory parent

我知道要转到父目录,您应该使用

parentname = os.path.abspath(os.path.join(yourpath, os.path.pardir))

但是,如果我想获取几个文件夹的目录名称呢?

说我给了/ stuff / home / blah / pictures / myaccount / album,我想得到“myaccount”和“album”的最后两个文件夹的名称(不是路径,只是名称)在我的脚本中使用。我该怎么做?

3 个答案:

答案 0 :(得分:2)

看起来并不是特别优雅,但这应该可以解决问题:

>>> yourpath = "/stuff/home/blah/pictures/myaccount/album"
>>> import os.path
>>> yourpath = os.path.abspath(yourpath)
>>> (npath, d1) = os.path.split(yourpath)
>>> (npath, d2) = os.path.split(npath)
>>> print d1
album
>>> print d2
myaccount

请记住,如果提供的路径以尾部斜杠结尾,os.path.split将为第二个组件返回一个空字符串,因此如果您不进行其他验证,则可能需要确保先将其删除提供路径的格式。

答案 1 :(得分:2)

如何将路径拆分为list并获取最后两个元素?

>>> import os
>>> path_str = ' /stuff/home/blah/pictures/myaccount/album'
>>> path_str.split(os.sep)
[' ', 'stuff', 'home', 'blah', 'pictures', 'myaccount', 'album']

对于...等相对路径,os.path.abspath()可用于预处理路径字符串。

>>> import os
>>> path_str = os.path.abspath('.')
>>> path_str.split(os.sep)
['', 'tmp', 'foo', 'bar', 'foobar']

答案 2 :(得分:2)

>>> p='/stuff/home/blah/pictures/myaccount/album'
>>> os.path.abspath(p).split(os.sep)[-1]
'album'
>>> os.path.abspath(p).split(os.sep)[-2]
'myaccount'
>>> os.path.abspath(p).split(os.sep)[-3]
'pictures'
>>> os.path.abspath(p).split(os.sep)[-4]
'blah'

等...