python代码实现使用命令一次性创建多级目录E:\Python\filetest
时间: 2023-06-01 20:05:11 浏览: 223
FileTest:文件测试的源代码 - 交互式文件系统测试工具
可以使用os模块中的makedirs()函数来创建多级目录。代码如下:
```python
import os
path = r'E:\Python\filetest'
os.makedirs(path, exist_ok=True)
```
其中,path为要创建的多级目录的路径。makedirs()函数会判断路径是否存在,如果不存在则会创建,如果存在则不做处理。exist_ok=True表示如果目录已经存在也不会抛出异常。
阅读全文