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)
