Hi all, I am trying a simple flow to grab a file in one folder (user's scans) and move it to another folder on sharepoint (team scans).
The destination folder has a space in the folder name. That's their naming conventions and it isn't going to change.
I am drawing this error when the copy or move command attempt to execute (output):
"body": { "status": 400, "message": "Failed to verify the existence of destination location at 'https://xxxxxxxxxxxx.sharepoint.com/sites/MYSITE/PROJECT NAME/SCANS' due to error 'The system cannot find the file specified. (Exception from HRESULT: 0x80070002)'.\r\nclientRequestId: XXXXXXXXXXXXXXXXXXXXXXXXXXXXX\r\nserviceRequestId: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" }}
Note that the error refers to the location as a link, and it has a space between PROJECT and NAME.
I encoded the path in a compose action: encodeUriComponent(concat(item()?['{Name}'], '/Scans')) but I still get this error.....