Unable to get UI path folder in task scheduler

Hi Team,

I am using UiPath trail version and machine is windows 7 , my issue is unable to get UI path folder in Task Scheduler. please tell me what i have to do.

Thanks in Advance.

UiPath Studio is built on the VB .NET framework, so something like “Environment.CurrentDirectory” should work in getting the current path folder.

An example use case to assign to a String variable:
Path.Combine(Environment.CurrentDirectory, in_ReportsPath, “Yearly-Report-”+in_ReportYear+“.xlsx”)
Would create “Yearly-Report-2018.xlsx” in the directory .\ReportsPath\

1 Like