Hi, how can I start a delta tracking on a specific folder using .Net (C#) in OneDrive ?
but my previous solution tracks changes in the whole drive:
IDriveItemDeltaCollectionPage page;
page = await graphClient.Drive.Root
.Delta()
.Request()
.GetAsync();
But I want to track only the changes of a specific folder.
Who can help me ?
Thanks in advance :-)