I am currently working on a robot to do some repetetive tasks (the process is described below) and I have a basic framwork done, but I was wondering if there was any way to “optimise” it or make it easier / declutter it? Any tips, pointers or ideas are very welcome, I am still fairly new to UiPath and eager to learn. Thank you in advance!
So the bot goes through a folder with folders in it, it should check every folder inside and if it contains “CL” in its name, AND is not older as 90 days, then it should go into it and check all the files inside for any named “CL” again.
Instead of if condition for folder use the inbuilt filter in the for each activity
And order them by newest first so that in your if condition once you find a file older than 90 days then break the loop using break so that other files loop is not run at all