A fairly simple question, but I can’t seem to figure it out.
I need to:
Have an input dialog box that captures a “customer name”.
Which would save this “customer name” as a variable - customerName.
Then, I would be using this variable several times throughout the process to save several different files to this particular folder, inside a main folder.
So, searching a specified main “Customer folder”, but use the customerName variable to search the “Customer folder” and find the specified customerName folder.
It seems like I would use “browse folder” and then in the filepath section of “browse folder”, I would put the filepath of the main folder - desktop/mainfolder/(customerName) - Something like that - and assign a variable where the customer name would be.
Use Select Folder activity which opens a dialog box at run time to select a folder (you have select it by manually navigating to that customer folder) to use later
Approach 2
Use Path Exists activity to check the customer folder exists or not. If it exists then you can proceed with the next steps
Please check the attached workflow for the above two approaches