sparc
sparc

Reputation: 429

Copy large files (120MB) from one drive to Azure blob - Power automate

I am using the standard Power automate template to copy the files from one drive to Azure blob storage container.

Is there a limit on the maximum size of the file that you transfer?

I have to copy file of 120MB from onedrive to Azure blob and the flow is not getting triggered as it's not recognising the huge file.

If the size of the file is less than 50MB flow, it's triggering.

How do I copy large files through Power automate?

Upvotes: 0

Views: 1418

Answers (1)

SwethaKandikonda
SwethaKandikonda

Reputation: 8244

Triggering using OneDrive connector is not possible through Power automate since this is a limitation for this connector. The trigger starts to skip if the file is bigger than 50 MB.

The When a file is created or when a file is modified triggers will skip every file bigger than 50 MB.

However, you can copy files by having a different trigger and copy files to Azure blob storage by having required condition. In my case I'm checking if the file is already present in the blob. If yes, it skips. If not, It creates the file in Blob Storage. Below is the flow.

enter image description here

RESULTS:

In my Storage account

enter image description here

Upvotes: 1

Related Questions