Hi @Tony Johansson ,
I'm assuming that you may have configured the dataset in your source which is resulting in this error. Please ensure that your copy activity source dataset is pointing to the correct filename. In case if you are point it the file name from your getmetadata childItems names then you will have to have an expression like Please have your sink dataset configured with dynamic expression for the file name as shown below:
Assuming you getMetadata output likes below:
Source data set configuration should look like below:
And the sink configuration should look like below:
@concat(split(item().name, '.')[0],'_',pipeline().TriggerTime,split(item().name, '.')[1])
Hope this helps. In case if you have further questions, please provide additional information and we can assist accordingly.
Please don’t forget to Accept Answer and Yes for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.