Skip to main content

Posts

Showing posts from 2023

Power Automate: SharePoint Copy file action fails on file names with a plus (+) sign

Power Automate: SharePoint Copy file action fails on file names with a plus (+) sign

  For data migration purposes I tried to copy files from one document library to another with the help of Power Automate's copy file action for SharePoint. At some point I realized that it always fails on file names that contain a plus (+) sign. Checking the community pages I found this article that pointed me to the right direction to find a workaround: https://powerusers.microsoft.com/t5/Building-Flows/Copying-sharepoint-files-with-a-symbol-in-them/m-p/675902#M91042 Although the "Copy file" action is already the second generation it seems like Microsoft has not managed to finally solve this bug as stated in article. The community user BISK came up with a solution to replace the file path with some HTML or URI encoding. Basically, the solution its a double URI encoded string of the path we need. We can solve this with using the encodeUriComponent() function in an expression twice. Sample: encodeUriComponent(encodeUriComponent('/Source/MyFolder/MyFiles with a + sign.

Power Automate: Avoid Apply to Each for List rows action (DataVerse)

If you do not want to use the Apply to Each loop after a Dataverse List rows action you can use the following in a Dynamic Content / Expression box to directly use a field's value in e.g. Compose action: first(outputs('List_rows')?['body/value'])?['apx_fullpath'] instead of apx_fullpath you can use whatever field name you need for the entity that's been queried before.