Dimeji Olayinka
Dimeji Olayinka

Reputation: 81

Dynamically grab filepath from Azure Data Factory Copy Activity Output

Is there way I can grab the file path from Azure Data Factory Copy Activity Output. I have another activity in my pipeline that I want to use the output filepath for. I would also add the filepath as a value to parameter as well.

Upvotes: 0

Views: 2633

Answers (1)

Steve Johnson
Steve Johnson

Reputation: 8660

You can not get filepath from copy activity output.

You can set filepath as parameter, and pass that to dataset.

enter image description here

dataset of sink: enter image description here

Then you can pass this filepath parameter to another activity.

Upvotes: 1

Related Questions