An Azure service for ingesting, preparing, and transforming data at scale.
Hi Prashant Vidhate,
For copying photos or videos from a SharePoint Online document library to Azure Blob Storage using Azure Data Factory, you typically enumerate the files using Microsoft Graph or SharePoint REST APIs and then use a Copy activity with an HTTP source to download each file as binary and write it to Blob Storage.
For the linked service base URL, use the SharePoint site root such as:
https://<tenant>.sharepoint.com/sites/<SiteName>
If your library has multiple nested folders, the pipeline can enumerate files recursively and then copy them while dynamically building the sink path so the same folder hierarchy is preserved in Blob Storage.
For incremental loads, you can track the LastModifiedDateTime of files (or use Microsoft Graph delta queries) and copy only files that were added or modified after the previous pipeline run.
Hope this helps, Please let us know if you have any questions and concerns.