Hello:
I have built a Power Dektop Flow where I get fields of Microsoft List using OLEDB 12.0. Follow this link to get connection string:
https://www.connectionstrings.com/sharepoint/
Then use Open SQL connection
After that use Execute Query SQL and make a select of the name of list. Ex : select * from ['Tràmits']
Finally you are able to get all field values of that list, iterating results
For each CurrentItem in QueryResult
CurrentItem2['Title'] - You get title field
The problem I have, is that using this method I am not able to get listitem attachments.
Anyobody knows how to get them?
I need to get FileAttachments path and filename name.
I don't want to use Sharepoint connector in Power Automate Desktop.
Thanks in advance.
Francesc