#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

path = "/tmp/home/222"
try:
    os.makedirs( path, 0755 );
except Exception,err:
    if (err.args[0] != 17):
        print err

posted on 2021-02-19 09:58  步孤天  阅读(1778)  评论(0编辑  收藏  举报