I am using DataFactory in my work.
I'm considering transferring files from Blob storage to an on-premises FTP server, but is there a good way to implement it?
When I looked into it, I found Logic Apps, Azure Functions, and Custom Activities, but I wonder if there is an easier way to implement it...
According to this, we cannot write a file into FTP server from blob storage using ADF directly. You can make use of Azure Functions to copy data from Azure blob storage to an on-premises FTP server.
You can use the code below:
For more information, you can refer to this SO answer.