I’ve just built a simple UiPath automation that involves accessing a website, clicking on a UI element to trigger the download of an Excel file, waiting for the download to complete, and then apply the For each file in the Downloads folder. After successfully downloading the file, I intend to perform further tasks with the data within it. However, I’ve encountered a problem during the final step of the process.
When I use the ‘Filter by’ option and apply a wildcard like ‘*.xlsx’, it works as expected and selects all Excel files within the folder, which is great. However, when I specify the exact file name, as shown in the screenshot, I don’t receive any errors, the automation completes the download of the file, but it doesn’t access the specified file, and it doesn’t proceed with the subsequent steps in the automation flow.
Any insights or suggestions on why this might be happening would be greatly appreciated!"
That is Studio compatible project you will be not able to open in Studio X… convert your Studio X to studio and see what are the activities performed in the same way you can perform that in studio X.
In the Filter option we can give the extension of the file only. If filters the files with extension. In your case, you want xlsx files. In the filter option field you have to give like this *.xlsx.
Then you can get the only excel files.
Inside for each Insert an If condition to get the files with the Specific names.