In an Azure Logic App I'm finding files older than a given date in a file storage account and copying them over to a different block blob storage account.
The copy is working fine.
This is my action chain for that:
File: Get file content > Blob: Create block blob (V2)
At this point I'm trying to take the output of the create action and use Blob: Get Blob Metadata (V2) to verify that the file is indeed actually there.
When I am putting something in the Blob field of the Get Blob Metadata action the only options that come up in the list are from the files steps, no usable output from the Create block blob step.
It is my rough understanding that the next action will not even execute if the previous action fails, but this is too important not to do a hard verification. My next step will be deleting the original file so I need to get this right!
Considering that my whole intent is to hard verify that the Blob: Create block blob (V2) step created the file, what are my options?
