T
tac-tics
I know about os.path.split(), but Is there any standard function for
"fully" splitting a file's pathname? A function that is the opposite of
the os.path.join() function? For example:
['.', 'foo', 'bar', 'moo', 'lar', 'myfile.txt']
In the meanwhile, I'll do this by hand. I'm just curious if there is a
standard way to do this.
"fully" splitting a file's pathname? A function that is the opposite of
the os.path.join() function? For example:
['.', 'foo', 'bar', 'moo', 'lar', 'myfile.txt']
In the meanwhile, I'll do this by hand. I'm just curious if there is a
standard way to do this.