#!/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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2018-02-07
  • 2021-09-10
  • 2022-12-23
  • 2021-07-10
猜你喜欢
  • 2022-01-12
  • 2022-12-23
  • 2022-03-01
  • 2021-07-20
  • 2021-08-10
相关资源
相似解决方案