I have an Azure storage blob and want to upload large csv files from a SFTP server. How can I do that without having to copy the files locally and then uploading to the Azure blob. Is there a way to do this directly using the Azure Storage Explorer?
1 Answer
We can use Azure Logic App to copy files from SFTP server to Azure Blob Storage.
In the Azure Logic App, we can add these steps:
Trigger: When a file is added or updated to SFTP server
Action: Uploads a Blob to Azure Storage
We can also use Azcopy tool inside the SFTP server to copy files from SFTP server to Azure Blob Storage
2 Comments
S_S
Could you suggest how the azcopy tool can be used? From the documentation [learn.microsoft.com/en-us/azure/storage/common/… it does not seem to support transfer from FTP.
RamaraoAdapa
The AzCopy can be installed in the server. Now inside the server, we can use AzCopy to copy files from the server to Azure Blob Storage
