show/hide this revision's text 3 edited body

What's the most elegant way to check if the directory a file is going to be written to exists, and if not create the directory? Is there a better way than:

Update: Somehow I'd missed os.path.exists, thanks kanja, Blair, and DouglesDouglas, this is what I've got now:

def ensure_dir(f):
    d = os.path.dirname(f)
    if not os.path.exists(d):
        os.makedirs(d)

There's no magic flag to "open" that automatically does this, is there?

Initial attempt:

filename = "/my/directory/filename.txt"
dir = os.path.dirname(filename)

try:
    os.stat(dir)
except:
    os.path.mkdir(dir)

f = file(filename)
show/hide this revision's text 2 updated with improved solution

What's the most elegant way to check if the directory a file is going to be written to exists, and if not create the directory? Is there a better way than:

Update: Somehow I'd missed os.path.exists, thanks kanja, Blair, and Dougles, this is what I've got now:

def ensure_dir(f):
    d = os.path.dirname(f)
    if not os.path.exists(d):
        os.makedirs(d)

There's no magic flag to "open" that automatically does this, is there?

Initial attempt:

filename = "/my/directory/filename.txt"
dir = os.path.dirname(filename)

try:
    os.stat(dir)
except:
    os.path.mkdir(dir)

f = file(filename)
show/hide this revision's text 1

Python: Best way to create directory if it doesn't exist for file write?

What's the most elegant way to check if the directory a file is going to be written to exists, and if not create the directory? Is there a better way than:

filename = "/my/directory/filename.txt"
dir = os.path.dirname(filename)

try:
    os.stat(dir)
except:
    os.path.mkdir(dir)

f = file(filename)