How to know a top directory?

Michiel Overtoom motoom at xs4all.nl
Sat Aug 23 07:28:59 EDT 2008


Grigory wrote...

> I have path "/this/is/path" and I wanna get "/this/is".
>Also I want to use it as platform independent. If I want to pass "c:
>\that\path" then I need to get "c:\that".

import os
print os.path.split("/home/user/motoom")[0]
print os.path.split("c:\\prj\\techniques\\python")[0]


-- 
"The ability of the OSS process to collect and harness
the collective IQ of thousands of individuals across
the Internet is simply amazing." - Vinod Vallopillil
http://www.catb.org/~esr/halloween/halloween4.html




More information about the Python-list mailing list