月を表すサブディレクトリを含む年のディレクトリ構造を作成しようとしています。
- 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
誰かがこれについていくつかの情報を持っていますか ありがとう