I have an automate flow which moves all attachments of a sharepoint list to a specific folder on my sharepoint documents.
After this the records of my sharepoint list are deleted.
The formula i use to trigger my flow is:
forAll(galListData.AllItems;DownloadattachmentList.Run(ID));;Notify(
"files moved successfully";
NotificationType.Success;
3000
)
The issue i have is that when i receive the notification "Files moved successfully, depending of the number of files to be moved ad the internet speed only some files have been completely moved.
is there a way to send notification when the the sharepoint list is completely empty and files compltely moved?