How can I get shered link from BOX

Hello,
I have a question about how to get shared link in BOX folder by UiPath activity.
Now I do so simple thing with click activity but its not work.

I saw about BOX activity but, I did’t know how to use it.
Please tell me. Thank you.

@c_jirayu

Welcome to our UiPath community.

Do you want each file link from that folder ?

If yes then try it in below way.

     arrFiles [ ] = Directory.GetFiles("SharedFolderPath")

Then use For Each loop activity and pass arrFiles to it.

  For Each item in arrFiles
       Display item

item will print full file path.

1 Like

Thank you.
I will try to do this solution.

1 Like

@c_jirayu

Sure. Please check and let me know if you face any issues.