How to build a full file path address from a relative address

I have some txt files store within my project (“Data\Config.txt”) and need to get the full address to pass into another process.

how can i get the full path.

@rpalearner007 You can use Environment.CurrentDirectory to get the path in which you are working. Append that with your required path. Eg. Environment.CurrentDirectory+“\Data\Config” .It should be what you’re looking for.
Store that path in argument and pass it to workflow where you need it.

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