In article <[email protected]>, Rotwang <[email protected]> wrote: > >Hi all, can anybody tell me whether there's a way to change the default >location for files to be opened by open()? I'd like to be able to create >files somewhere other than my Python folder without having to write the >full path in the filename every time. Sorry if this is a stupid >question, I don't know much about programming.
from os.path import join BASE = '/path/to/root' f = open(join(BASE, filename)) Trust me, you'll be much happier with this. -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ import antigravity -- http://mail.python.org/mailman/listinfo/python-list
