Reputation: 29
I new to DataFactory so this might be a simple question.
I wish to add a timestamp to a copied file when i copy it to archive folder. All done on the same Blob storage.
Example : source file : file.csv sink file : file24062022.csv
So far i tried to add a @concat('whitelist_',formatDatetime(utcnow(),'dd-MM-yyyy'),'.csv')
My question is: How do i add a timestamp to a file using Copy activity?
Here is the copy behavior
Upvotes: 0
Views: 748
Reputation: 5074
@concat(formatdatetime(utcnow(),'dd-MM-yyyy'), 'csv')
Upvotes: 1