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