Extract a part of the filepath (a directory) in Python

后端 未结 7 1953
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 17:10

I need to extract the name of the parent directory of a certain path. This is what it looks like:

c:\\stuff\\directory_i_need\\subdir\\file
<
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 17:53

    import os
    ## first file in current dir (with full path)
    file = os.path.join(os.getcwd(), os.listdir(os.getcwd())[0])
    file
    os.path.dirname(file) ## directory of file
    os.path.dirname(os.path.dirname(file)) ## directory of directory of file
    ...
    

    And you can continue doing this as many times as necessary...

    Edit: from os.path, you can use either os.path.split or os.path.basename:

    dir = os.path.dirname(os.path.dirname(file)) ## dir of dir of file
    ## once you're at the directory level you want, with the desired directory as the final path node:
    dirname1 = os.path.basename(dir) 
    dirname2 = os.path.split(dir)[1] ## if you look at the documentation, this is exactly what os.path.basename does.
    

提交回复
热议问题