Hi team
I want to perform a right click option on each file of a particular folder, i have opened the folder but how to indicate every file and perform right click.
Please help.
Regards
Divya
Hi team
I want to perform a right click option on each file of a particular folder, i have opened the folder but how to indicate every file and perform right click.
Please help.
Regards
Divya
you get all the files in a List variable and process each file using some UiPath activities (e.g. Move File, Copy File) or even programming, instead of dealing with the UI
but if your situation is required, you can try
Hi @Divya_Gomathy,
For Right clicking each file in a folder use Assign -Directory.GetFiles(“YourFolderPath”****)
Use Assign -Filecount=0
use for Loop - to get each file in a folder
Inside loop Use Click Activity _ make sure that mouse type as Btn_Right and make it as Selector dynamic.
Use Assign Filcount=Filecount+1
Check below Workflow for references
Main.xaml (17.2 KB)
Hope this helps,If it works marks as solution.
Thanks,
Neelima.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.