Path.Combine

Hi All,

Can you please advise what is missing in my settings?

I do not know why for one process it works while for another not. Is that a library missing?

Thank you

1 Like

Use Path.Combine… You are using Path.combine method, which is not exists.

Also please ensure you have any variable with the name of ‘Path’. If yes, please rename and try again.

1 Like

Hi

That is not the case. This function is not even available for me and I do not have any variable with ‘Path’
Capture1

1 Like

You have path as a variable? @niteckam

1 Like

In the Error screenshot, Its clearly stating that, you are trying to get combine method from an variable which is of type “GenericValue”. Also check in your arguments list once.

1 Like

Try with System.IO.Path.Combine

3 Likes

Thank you
Can you write why is like that?

1 Like

Path is a property of System.IO class, so directly if Path is not working then we can use that with System.IO.Path.Combine

2 Likes

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