Hi, I am working on a desktop application, from this I need to copy few files using hotkeys and paste in a folder which is in D drive.
How do I go with this. Can you help me
Hi, I am working on a desktop application, from this I need to copy few files using hotkeys and paste in a folder which is in D drive.
How do I go with this. Can you help me
Hi
Instead of copy paste you can get the list of files and then copy to another folder with files and folders activities
Have a view on these activities for more ideas
To get list of filepath from a folder use this expression in a assign activity like this
arr_filepath = Directory.GetFiles(“your folderpath”)
Where arr_filepath is a varivale of type array of string
Then you can pass this array to a FOR EACH activity where change the type argument property as string
Inside the loop use a COPY Files activity and mention the source path as item.ToString and destination as your folder path you need
https://docs.uipath.com/activities/other/latest/workflow/copy-file
Cheers @hanviprebday
open application
click on the download or open file you need to copy
send hotkey activity control A
write in text file or excel using write range or write to text file
Hope it helps
if you need clarification please explain you scenario in detail