Describe function here.
def CreateDirectory(value): try: os.makedirs(value) except OSError: if not os.path.isdir(value): raise