I have a logic app which polls for files does some things with them, succeeds or fails then ends. It will run every 5 minutes and poll for a file. If it finds a file I can create a blob storage with a date time suffix eg LogutcNow('s').txt I want to append to this file various messages generated from the logic app eg if steps succeed or fail.
Is Blob storage the best way to put a file in my Azure storage account? Since the name of the blob depends on the date time, how do I append to it? It may be that the logic app does not write anything to the log file. In that case I want to delete it.
I want to create the blob at the beginning of my logic app then update it. If there are no updates then I want to delete it. In the update action it seems to require me to specify the name of the blob. Since I haven't create the blob yet this is impossible. One thing I also tried was initialising a string variable to the current date and time and putting that variable into the filename.