I am trying to create an empty folder at a specific location with some subfolder within the new folder I just created.
Besides Python, to create a folder:
Use a Run Command tool to create and run a BAT file
https://community.alteryx.com/t5/Alteryx-Designer-Discussions/Output-to-new-folder/td-p/54472https://community.alteryx.com/t5/Alteryx-Designer-Discussions/Directory-output/td-p/1011387
Use the Render tool
https://community.alteryx.com/t5/Alteryx-Designer-Discussions/Create-a-folder-and-write-the-output-files-to-that-particular/td-p/438973
Chris
You can use the python tool with module os. Modify the array paths to contain your desired folders. Note if you are new to python your all backslashes in your sting need to written as \\ instead of \. Separate paths with a comma delimiter if you need more than one.