On an if statement... what do i write for do nothing/move on to next step/sequence

for instance

If this folder “exists” - (my variable) THEN… do nothing and move on or stop

ELSE - create directory - (which just making sure… means create folder right?)

Just leave the TRUE side blank. And yes, create directory means create folder. However, you don’t need to have this within a separate if statement because the create directory activity already performs the same if statement actions internally. The activity itself will check if the folder exists. If it exists, it will do nothing. If it does not exist, it will create that folder (and any parent folders necessary)

1 Like

thank you sir! noob question but i sincerely appreciate it

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.