AdventOfCode/initFiles.py
2022-12-09 08:29:06 +01:00

14 lines
474 B
Python

import sys
import os
if __name__ == '__main__':
sys.path.append('..')
year = input('Enter year: ')
# create folders for the days and the py files
for i in range(1, 26):
if not os.path.exists(year + '/Day' + str(i)):
os.makedirs(year + '/Day' + str(i))
f = open(year + '/Day' + str(i) + '/Day' + str(i) + '.py', 'w')
f.close()
f = open(year + '/Day' + str(i) + '/input.txt', 'w')
f.close()