How to select a folder within a folder using the windows explore

how to select a folder within a folder using the windows explore 2019-04-26_13h46_49

i need to select D directory later D:/sample/1 folder.
2019-04-26_13h47_13
for every iteration the folder name 1 will be changing
2019-04-26_13h47_29

can any send the file which performs this operation.

Thanks in advance…

Hi @vinnu54,
Welcome to UiPath Community!
You may want to type the complete path of the folder in the address bar of windows explorer to be redirected to the folder

Hi @vinnu54

Welcome to the community!! :smiley:

So you are trying to upload a file which is located in a particular folder.

What you can do is, you can get the file on to an array using below command

Directory.GetFiles(FilePathVariable)

Now, your array will have the entire file path along with the file name and extension attached to it.

Once in the file upload screen, in the window that appear to select the file, under file name text box, mention the value in the array (this contains the file path and the file name) and click on the ok button. This will upload the file without the need of navigating to the folder through the explorer…

Let know if this helps

1 Like