To read all the files in the specified folder in Ui Path RPA

I want to read each file in the specified folder using Ui Path RPA , how can i do this , is there any activity to iterate all the files in the folder

@Vasundhara_Pakkurthi

Try below expression to get all files in specified folder.

         varArrayFiles [] = Directory.GetFiles("FolderPath")

Then use ForEach loop to iterate one by one file.

Yes it is working

1 Like

Thanks for the reply

1 Like

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