Hi,
Is it possible to create folders with Space in the folder name using Alteryx? I am able to create folders using Run Command tool but the folder names can't have spaces between them.
@navnidhsinghsahni
You could use a batch macro to pass the directory name into the Run Command tool as described by @patrick_digan here.
Attached is an example he's built out. Let me know if it addresses your issue.
You just need to make sure that you wrap the name in quotes
mkdir "Folder Name"
Hi MichalM,
When I enter a command say:
"mkdir"+"C:/Users/Desktop/New Folder"
It creates a folder named "New" at the destination path and the run command returns an error:
"The external program "..." returned an error code: 1".
So, I am unable to create folders which have spaces in their names.