For Loop Activity


I have created this robot for a single PDF file. Which for loop should be used to loop in multiple PDF files? bcz i have a multiple pdf files

Hi @UJJVAL_BHAGAT

Use For Each File in Folder activity and pass the folder path and give all the activities inside the loop. In Read PDF text activity pass CurrentFile.ToString. this will loops through each file and extract the data. In Write Text File in Write to filename give CurrentFile.ToString.Replace(".pdf",".txt"). This will write text file for all PDF.

image

Regards