In this section, we'll look at the overall flow for this project in terms of the UiPath project components we will be building and their interaction.
We will have a main workflow called Main.xaml that will invoke other workflows and orchestrate the automation. From this workflow, we will invoke the ReadConfig.xaml file to read the configuration parameters – the input and output file paths and Google Authentication.
The reason we have a configuration file is to avoid hardcoding values in the automation process. This also gives users the option to update the parameters without making any code changes.
With the configuration parameters, we will invoke the BuildExcelList.xaml file in order to read the images placed in the Input folder and create a list of images that we'd like to pass to the Google Vision SafeSearch API. We will create this image list, which includes the image's filename, and their path, which will be placed...