Pass dynamic path in sharepoint URL

Hi Team,
I want to download files from the email template folder of sharepoint for which below is the path:
/Shared%20Documents/2020/Q1/Tax/Reference%20Folder/Email%20Templates

so 2020,q1,tax is the dataitem that will be fetched from the queue which i am fetching like:
year=currentTransaction.SpecificContent(“Year”).ToString
and so on.
Now how can i pass it into the above relative URL so that files can be downloaded from the sharepoint.

@Lahiru.Fernando @Daniel_Martinez-Cace
please help

1 Like

Hi, if you want help from specific people, you can send them direct messages, if you want help from anyone willing to help, please dont tag people directly in your question.

What are the activity your are using to download a file manually?

1 Like

Here is my best guess of what you want to acheive.

You have a dynamic URL that points to different folders depending on year, quarter etc. The general format for this URL is:
/Shared%20Documents/[YEAR]/Q[Q NO]/[DEPARTMENT]/Reference%20Folder/Email%20Templates

Define this URL as an input string and use the String.Replace method to replace the Year, Quarter No, Department and so on.

The attached workflow implements this solution. Does this match your requirements?Main.xaml (5.9 KB)

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.