Python创建目录

流程如下:

  1. 判断目录是否存在os.path.exists(path)
  2. 创建多层目录os.path.makedirs(path)
  3. 创建目录os.mkdir(path)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/python
# -*- coding:utf-8 -*-

import os

def mkdir(path):
path = path.strip() #去除首位空格
path = path.rstrip("\\") #去除尾部 \ 符号

isExists = os.path.exists(path)

if not isExists:
os.makedirs(path)
print path + '创建成功'
return True

else:
print path + ' 目录已经存在'
return False


mkpath = 'c:\\test'
mkdir(mkpath)

当父目录不存在的时候os.mkdir(path)不会创建,os.makedirs(path)则会创建父目录

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×