Getting error - Move File: Could not find file 'E:\Folders_To_Move_Source'

Hi @Chinmay_Bhalerao !
To move the file by using Move file activity, you need to indicate file paths not folder paths.
For instance, let’s say you have an excel file named “A.xlsx”, you need

  • in the from section to write: “E:\Name of the source folder\A.xlsx”
  • in the to section to write: “E:\Name of the output folder\A.xlsx”

So in your situation, you have to write:

  • in the from: item
  • in the to: "E:\Folders_To_Move_Source\" + Path.Getfilename(item)
1 Like