Hi @Zaheer. Sadaf (Enterprise Services)
Thank you for posting this in Microsoft Q&A.
Yes, To copy files from SharePoint to Azure Blob Storage using an Azure Function App. Here's a steps
1. Create Azure Function App:
Set up a Function App in Azure.
Choose a Consumption Plan for cost-efficiency.
2. Create a Blob Trigger Function:
Create a function triggered by an HTTP request.
Use a Blob output binding to write files to Blob storage.
3. Install Required NuGet Packages:
Install packages for SharePoint Online CSOM and Azure Storage.
4. Write Function Logic:
Authenticate to SharePoint.
Retrieve files from the specified list or folder.
Download files from SharePoint.
Upload files to Blob storage using the output binding.
I hope this helps! Please mark as "Accept the answer" if the above steps helps you. Your suggestion will help others!