I have the below code, the os.mkdir is not working on mine. Compiling does not return any error, but running the code does not create folder.
def folder():
timenow = datetime.now().strftime('%Y-%m-%d_%H%M%S')
folderpath = os.path.join(currentpath,"folder",str(timenow))
if os.path.exists(folderpath) == False:
os.mkdir(folderpath)
return
currentpath?