I want my azure pipeline to always select the current month folder in my source copy activity container and don't want to manually change the folder to the new month every month for example:
You can see the folder points to this month, but when we enter Jan 2021 the folder must automatically point to Jan 2021 and all the contents in that new month folder.
Is there a way to achieve this using dynamic content?
I have tried this string but it does not seem to work:
@concat(pipeline().parameters.ExecutionFolder, '/',formatDateTime(utcnow(), 'yyyy'), '/',formatDateTime(utcnow(), 'MM')
Regards