2015年8月26日 星期三

Python mkdir -p

mkdir -p functionality as follows:
import os, errno

def mkdir_p(path):
    try:
        os.makedirs(path)
    except OSError as exc: # Python >2.5
        if exc.errno == errno.EEXIST and os.path.isdir(path):
            pass
        else: raise

Update

For Python ≥ 3.2, os.makedirs has an optional third argument exist_ok that, when true, enables the mkdir -p functionality —unless mode is provided and the existing directory has different permissions than the intended ones; in that case, OSError is raised as previously.

refer : http://stackoverflow.com/questions/600268/mkdir-p-functionality-in-python

沒有留言:

張貼留言