I have multiple web pages that contain the files (.zips) I need to download and archive. I need to be able to find the names of the files per each web page and download them to a specific directory. I have tried using
GenerateFlowFile: (Contains all urls i need data from) -> SplitText (one url per line)
->ExtractText -> InvokeHTTP -> this gives me the response with filenames i need listed in <a href=**>.
How would I extract the names of the files I need from the response, and then download the files?
Regards,