dcos.UiPath

Dears,

Please, how to find a full list of expressions in docs.UiPath.com.

for instance, I reached to loops lesson, and the instructor in the video used an expression: Directory.GetFiles(folderpath) ,however, I searched for Directory.Get in docs.uipath.com and I found the expression is used in many cases, but I could not find a separate section that explains the expression itself alone. this also foes for functions, classes, etc.

Is there a full list of them all, because it would be so easy to navigate between them and understand each one alone with merging it with other cases.
Please I need your support

Kind Regards,

This works with namespace, please see below example. hope this helps!
image
System.IO.Directory.GetFiles(“Full Folder Path”, “.Type of File")
E.g. System.IO.Directory.GetFiles("C:\Users\XXX\Documents\UiPath\XX", "
.pdf”)

1 Like

The code you see used in various expressions is vb.net code, so you need to look at Microsoft’s documentation, e.g. https://docs.microsoft.com/en-us/dotnet/api/system.io.directory?view=netframework-4.8

1 Like

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