How to get upper paths from a single path?
So say you have a path like:
'C:\a\b\c\d\'
How do I get to 'C:\a\b' or 'C:\a\b\c'
Is there a pythonic way to do this?
|
|
|
|
|
|
|
See
|
|||
|
|
Not being a regular user of os.path, I don't know if this is an appropriate/pythonic solution. I compared it to an alternate function, define as follows:
The first thing to note is that
This outputs (on my machine):
Not very useful information, but I was playing around, and figured it should be posted here anyway. |
|||
|
|
|
|
You can continue to call split on the first element of the tuple. |
||
|
|
|
Theres basic stuff like os.path methods. If you want a list of the full path names of each successive parent in the directory tree, heres a one liner:
|
|||
|
|