目录已存在了。
创建目录前做个判断
def makedir(path):
if not os.path.exists(path + '/js'):
os.mkdir(path + '/js')
目录已存在了。
创建目录前做个判断
def makedir(path):
if not os.path.exists(path + '/js'):
os.mkdir(path + '/js')