How to copy specific images from folder move to another folder using uipath

Hi,

I have images id’s in excel, based on images id it should copy image from given folder and paste into another folder… please help me out

Use Read Range to get the names of the files from Excel into a datatable. Then use a For Each Row activity, and within that, get the name from your column of data (if this is a single-column Excel file, it’s row(0).ToString, and pass it to a Copy File activity, with the row reference as the source, and the directory as the destination.

2 Likes

Done Thank you Anthony.