I want to get all the files and folders contained inside a office365 onedrive folder in one rest API call, is there any option to do it?
相关问题
- List Microsoft Sharepoint Sites with Microsoft Gra
- Can I sync calendar events with the Microsoft Grap
- Error: Public clients can't send a client secr
- Azure Data Factory and SharePoint
- Sharepoint `Unsupported segment type` when checkin
相关文章
- How to get admin access to files for all user'
- VBA download a File from OneDrive
- MS Graph Java SDK: how to upload a large file to O
- How to upload file to OneDrive through console app
- OneDrive upload via php [closed]
- Is it possible to sign into a Microsoft Account wi
- How to download files from OneDrive
- Create file to Onedrive programmatically from C#?
There isn't a specific API call to retrieve a flat representation of a Drive. You can achieve a similar effect however using the drive's search method.
Simply pass an empty query string and it will return metadata for each file (regardless of it's directory):
https://graph.microsoft.com/v1.0/me/drive/root/search(q='')