Enumerate blob names in Azure Data Factory v2

眉间皱痕 提交于 2019-12-06 15:10:22

Get metadata activity is what you want. https://docs.microsoft.com/en-us/azure/data-factory/control-flow-get-metadata-activity

  1. Please use childItems to get all the files. And then use a foreach to iterate the childItems

  2. Inside the for each activity, you may want to check if each item is a file. You could use if activity and the following expression.

  3. Then in the "If true" activity, assume you want to copy data, you could use @item().name to get each of your file name.

You could find more documentations with this link.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!