How can I check local OneDrive folder is in sync?

前端 未结 2 743
一向
一向 2021-01-05 07:37

I need to be able to check if the local OneDrive folder is in sync/up to date.

Can I check this by looking at any of the file/folder properties(in C# code) Without u

2条回答
  •  感动是毒
    2021-01-05 08:09

    Probably comparing the LastModifiedDateTime.

    ...Drive.Root.ItemWithPath(file).Request().GetAsync()).FileSystemInfo.LastModifiedDateTime
    

提交回复
热议问题