The last step in this project is to move the processed images to the output folder. We will use a similar method to the one we used in the BuildExcelList workflow to read the files in the input folder and move them to the output folder:
- We'll start by adding a new sequence in Main that we will call Move Processed Images to Output Folder Sequence.
- Next, we'll add two variables to read in the information for the files in the input folder:Â Â
- A strFilename variable of the String type. Set the scope to Try-Catch.
- A strFileInfo variable of the FileInfo type. Set the scope to Try-Catch.
- Let's add a For Each activity to step through the files. We will iterate for each item in Directory.GetFiles(strInputFolder). This will iterate through all the files in the input folder.
- Next, add two Assign activities to get the file information and filename from the object. Assign strFileInfo...