I have a flow where I do an HTTP request to Sharepoint with a search query for specific files.
The returned array has the full path names of all the search results.
This is not a problem until the final step where I want to delete the files.
The action "Delete file" requires a File Identifier, I only have file name and file path.
I have tried assembling the File Identifier myself by using the concat expression trying both using "/" after each folder name and "%252f".
This does not work and times out on the Delete file action with the error that the file was not found.
As far as I can tell the File Identifier is nothing more than the folder name (minus site address)+ file name.
Is it possible to do this, if yes, how?