Spaces:
Runtime error
Runtime error
File size: 228 Bytes
c310e19 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import errno
import os
def mkdir(path):
try:
os.makedirs(path)
except OSError as e:
if e.errno != errno.EEXIST:
raise
|