I am using the Microsoft Graph SDK to integrate with a OneDrive Business account. I have uploaded large size files to the drive. The drive is syncing to the local folder. I have a requirement to download files using the Grpah SDK. If the file that needs to be downloaded is synced to the local folder, i need to retrieve that file or else download from the server.
Is there any API method where I can check if the file has been synced to the local folder?
I was referring to the https://docs.microsoft.com/en-us/graph/api/driveitem-delta?view=graph-rest-1.0&tabs=csharp link but it did not contain any information to check the local folder. I am not sure what the delta function is returning.
var delta = await _graphClient.Me.Drive.Root
.Delta()
.Request()
.GetAsync();
I expect an API output which says if the file is synced to the local folder or not.