Move each file in a folder

CamiCat

Member
Hello friends,

I need to move all files inside a folder in a different folder.
I'm doing :
- 'Get Files' from the location of the folder;
I would like to Move the files from the source to the destination directory.
How can I do that?
Thank you so much,
Cami :)
 

sivagelli

Well-Known Member
The output collection of Get Files has the 'Path' field which has the full file path. Lets say the output collection name is 'File'.

Then for 'Move File' use inputs-
  • File Path: [File.Path]
  • Destination: "D:\DestinationFolder" & [File.Name]
This moves the first file from the Get Files action to D:\DestinationFolder

Post back how it goes
 
Top