Finding a specific file using filters

Hi experts,

I have been trying to run a bank confirmation process whereby once the user selects the client’s name in the input dialogue, UiPath will retrieve all the files containing the different banks for the specific client and will automatically convert the bank confirmation from Word to PDF. Is there an example to do this?

Cheers

Hi @lq_c,

Use Directory like below

Workflow

Pass your path in For each
"F:\User\Documents" = YourFolderPath

Directory.GetFiles(“F:\User\Documents",”“+in_CompanyName+”.pdf")

Thanks,
Rajkumar

Hi @lq_c,

check Xaml
Sequence7.xaml (6.1 KB)

Hi [RajKumar_DC],

Can I also check if there is a way to select files which contain for instance the company name? I tried using this Directory.GetFiles(FilesInFolder,SelectedCompanyName) but unable to extract the files.

Hi @lq_c,

if possible try to share sample path and Show sample Input, Output also

Thanks
Rajkumar