https://www.google.compython get date/search?q=python+create+folder+in+path&oq=python+create+folder+in+path&aqs=chrome..69i57j0i19i22i30l6.7207j0j1&sourceid=chrome&ie=UTF-8 code example
Example: create folder python
import os
# define the name of the directory to be created
path = "/tmp/year"
try:
os.mkdir(path)
except OSError:
print ("Creation of the directory %s failed" % path)
else:
print ("Successfully created the directory %s " % path)