vote up 3 vote down star

How can I create a file in python one directory up, without using the full path?

I would like a way that worked both for windows and linux.

Thanks.

flag

3 Answers

vote up 8 vote down check

Use os.pardir (which is probably always "..")

import os
fobj = open(os.path.join(os.pardir, "filename"), "w")
link|flag
1  
will that work for both Windows and Linux? – nunos Oct 22 at 14:48
by using os.pardir it will take the relevant parent directory syntax for the OS your application is currently running on. So yes, it will work on both Windows and Linux. – tomlog Oct 22 at 14:49
Thanks. That was quick! – nunos Oct 22 at 14:51
os.path.join uses the right kind of directory separators for the OS (: for Mac OS 9 etc..). os.pardir the correct parent directory name, but does anyone know any OS not using ".."? – kaizer.se Oct 22 at 14:59
OpenVMS uses very different directory syntax; but os.pathsep still returns ".." and you can use Unix-style paths within python with no problem. – Dave Costa Oct 22 at 15:31
vote up 2 vote down

People don't seem to realize this, but Python is happy to accept forward slash even on Windows. This works fine on all platforms:

fobj = open("../filename", "w")
link|flag
Is this an official feature? I don't remember seeing it in the documentation, and os.path.join always made me think that programmers should not rely on '/' being the path separator… – EOL Oct 22 at 17:50
vote up 0 vote down

Depends whether you are working in a unix or windows environment.

On windows:

..\foo.txt

On unix like OS:

../foo.txt

you need to make sure the os sets the current path correctly when your application launches. Take the appropriate path and simply create a file there.

link|flag
use os.path.join or os.sep – Anurag Uniyal Oct 22 at 14:56
Python will understand forward slash on Windows, too. – mobrule Oct 22 at 15:16
I'm no python guy :-) – Johannes Rudolph Oct 22 at 15:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.