Python创建目录
流程如下:
- 判断目录是否存在
os.path.exists(path)
- 创建多层目录
os.path.makedirs(path)
- 创建目录
os.mkdir(path)
1 | #! /bin/python |
当父目录不存在的时候os.mkdir(path)不会创建,os.makedirs(path)则会创建父目录
流程如下:
os.path.exists(path)
os.path.makedirs(path)
os.mkdir(path)
1 | #! /bin/python |
当父目录不存在的时候os.mkdir(path)不会创建,os.makedirs(path)则会创建父目录
Update your browser to view this website correctly.&npsb;Update my browser now