Get all SharePoint files and folders of a drive using Microsoft Graph API

后端 未结 2 1095
悲&欢浪女
悲&欢浪女 2020-12-19 18:38

My problem is: if I call https://graph.microsoft.com/v1.0/sites/{site-id}/drives/{drive-id}/root/children all I get are the top-level items of that drive.

相关标签:
2条回答
  • 2020-12-19 19:24

    I found that the below endpoint retrieves all files and folders in a library. The result will be paged, with a standard page size of 200 items.

    /drives/{drive-id}/list/items
    
    0 讨论(0)
  • 2020-12-19 19:27

    There's no endpoint to get all items in a drive with every file from every subfolder at once.

    Below endpoint maps to a test library MyDoc3.

    /sites/siteid/drives/{drive-id}
    

    Then, below endpoint use to get children of FolderA in MyDoc3.

    /sites/siteid/drives/{drive-id}/root:/FolderA:/children
    
    0 讨论(0)
提交回复
热议问题