I have a task to copy the newly added files everyday from SAP Server and store it in ADLS. There are 2 types files on the server (Recurring and Upfront) appended with date. I need to store the files in separate folder and everyday add the latest file from the SAP Server to the ADLS.
File name format: R_07292021.orc Recurring_08312021.orc U_07292021.orc Upfront_08312021.orc
Below are the steps I have taken so far
Get Metadata Activity to get the list of files from the server
Use filter activity to separate the files based on the names, so filtering with the initial letter
I tried using the Foreach activity and If Condition, but it doesn't seem to be working.
I am stuck at this point trying to figure out how to proceed. Any help would be very much appreciated.
If you are trying to get the latest modified date of a file from a folder, you can refer to the below process.
I tested it with one type of file which starts with “U”.
Get Metadata
activity getting the list of files that starts with “U” by hardcoding the filename parameter value as “U”.Output of Get Metadata1:
ForEach
activity to loop through all the files from the list.Get Metadata
activity to get the metadata (last modified date & filename) of the current file in the loop.Output of Get Metadata2:
Connect Get Metadata to
If Condition
and use greater function and ticks function to evaluate the If condition expression.Ticks function returns Integer value of specified timestamp and using greater function compare the 2 values.
Maxdate:
LatestFileName: