How to copy today's date file from server hosted on WebDAV protocol using HTTP connection in Azure Data Factory?
There are list of files placed on server which is based on WebDAV protocol. I want to copy today's date file into Azure blob storage using copy activity. For example if today's date is 01-Mar-2024 i.e. 20240301, below highlighted file should
So for achieving this I created HTTP connection and in relative url path I gave filename path with wildcard characters as @concat('src/order/orderExport-Invoice-',formatDateTime(utcnow(), 'yyyyddMM'),'*.xml')'
But HTTP connection unable to recognize wildcard characters and unable to convert into actual filename, getting below error:
Is there any way through which we can dynamically copy the file for today's date from server(WebDAV) using HTTP connection or other method?