Azure - Copy file to FTP every 10 minutes

61 Views Asked by At

For a REST API hosted on an Azure App Service, how can I do the following every 10 minutes?

  • Hit a certain API route that updates a txt file that lives on the App Service
  • Copy the updated txt file onto an FTP server
1

There are 1 best solutions below

2
On

You can just use Azure WebJobs to do that. Azure WebJobs is a functionality of Azure app service, you can use it directly if you are using Azure App Service.

Azure WebJobs supports CRON task natively which meets your requirement perfectly.