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
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
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.
Hi
That is not the case. This function is not even available for me and I do not have any variable with ‘Path’
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.
Try with System.IO.Path.Combine
Thank you
Can you write why is like that?
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
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.