provide here a pattern e.g. *.xlsx for Excel
However can elaborate more on your case. What is to achieve?
Here from a folder i want to get all the files inside and also want extensions of the files , how can i apply for a filter for all the files which have different extensions , is there any expression that works with this loop.
filtering for all files: *.*
Sir but here i want to filter multiple extension at time! because i want to do sorting of file based on the file type.
the pattern syntax is not supporting a pattern specifying a set of extension
You can do e.g (one of multiple options)
Assign activity
LHS: FoundFilePaths | String( ) - String Array
RHS:
(From fi in New DirectoryInfo(YourPath).GetFiles()
Where {".XLSX", ".PDF", ".DOCX"}.Contains(fi.Extension.toUpper)
Select x = fi.FullName).toArray
Another option is to simply leave the “Filter by” form field blank… or no filtering… or everything. Not every form needs to be filled. UiPath’s user interface can be very trying at times.
You mean to say assign activity would be place in do section Can you share screenshot please appreciate
Thanks in Advance
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.