I need some help that, I need to verify/filter the my excel input filename while creating a dataset, with some prefixed(like filename starts or ends with some string(ex: start/end with employee)). How can I implement the same in Azure Data Factory dafaflow?
ex: 20230831 emp_data.xlsx ==> verify the file with emp_data string is existed or not?
Please let me know how to implement this. I'm new to ADF. Thanks!
ex: 20230831 emp_data.xlsx ==> verify the file with emp_data string is existed or not?
To check file name, contain the substring you want you can use the dynamic expression as
@contains('filename','substring you want to check')you can follow below steps:
It will check the file name, contain the substring and execute activities accordingly.