我正在尝试创建一个包含代表月份的子目录的年目录结构,即。
- 2012
- 01
- 02
- 03
我的代码是这样的:
newpath = "test"
for year in range(2000, 2013):
for month in range(1, 13):
newpath += str(year)+'\\'+str(month)
if not os.path.exists(newpath):
os.makedirs(newpath)
我收到一个错误
OSError: [Errno 2] No such file or directory: 'test\\2000\\1
有人可以提供一些关于这方面的信息吗 谢谢