Create a new folder in windows explorer with the current date and time

@Mark_246

import sys
pyt_path = r'C:\Program Files (x86)\IronPython 2.7\Lib'
sys.path.append(pyt_path)

import os

dirpath = IN[0]
dirname = IN[1]
os.makedirs(dirpath + "\\" + dirname)
2 Likes