请写一段python代码,实现以下需求:在D:\ArcgisOutput\TEST_0601文件夹中,创建12个空的文件夹,名称以此为month_1,month_2,...,month_12
时间: 2024-02-29 11:51:51 浏览: 48
python 实现:如果文件夹不存在就创建,如果文件存在就清空(csdn)————程序.pdf
5星 · 资源好评率100%
好的,以下是实现您需求的Python代码:
```python
import os
path = r'D:\ArcgisOutput\TEST_0601'
if not os.path.exists(path):
os.mkdir(path)
for i in range(1, 13):
folder_name = os.path.join(path, f'month_{i}')
os.mkdir(folder_name)
```
这段代码首先判断D:\ArcgisOutput\TEST_0601文件夹是否存在,如果不存在则创建。然后通过循环在D:\ArcgisOutput\TEST_0601文件夹下创建12个以'month_'开头的文件夹,名称分别为'month_1','month_2',...,'month_12'。其中,os.path.join方法用于将文件夹名称与路径拼接在一起,以保证跨平台的兼容性。请注意,路径中的反斜杠需要使用原始字符串(即在字符串前加上'r')来转义。
阅读全文