Forum Discussion
eshwar5
Mar 22, 2023Copper Contributor
Azure Data Factory
Dear Team I am Eshwar, I have below query Having 3 files from the blob storage container like below, from the below listed files wanted to copy only selected file (Filename_20230322.csv) fro...
gawankarsanket
May 02, 2023Copper Contributor
Hello eshwar5
You can use parameterized Dataset that will prompt you for filename while executing pipeline.
Also if you are looking file with today's date, you can dynamically set it using contact and date time function
eg. enter filename dynamically at source.
"
@concat('Filename_',formatDateTime(utcNow(),'yyyy'),formatDateTime(utcNow(),'MM'),formatDateTime(utcNow(),'dd'),'.csv')