Hi,
I have a flow in which, after writing, I create a file and save it as HTML to later convert it to PDF and store it in Sharepoint. The problem is that each response to the form creates a file for me, and I have a folder full of these, so I want them to be automatically deleted after they are created. Add a parallel branch after the file is created, but the stream gives me an error. Am I wrong in the way that the file that is created in my stream should be deleted?.
Thanks,
Francisco
Hello @Francisco77
You cannot place in parallel. Since you will be creating the pdf file from the html file, you will have to place the delete action after the pdf has been created.
So you can place after the create file (pdf). Or you can place at the very end of your flow as well.
There is no need to use branching here :).